--- parser3/src/include/pa_string.h 2009/05/14 11:27:23 1.183 +++ parser3/src/include/pa_string.h 2009/05/15 06:57:43 1.185 @@ -8,7 +8,7 @@ #ifndef PA_STRING_H #define PA_STRING_H -static const char * const IDENT_STRING_H="$Date: 2009/05/14 11:27:23 $"; +static const char * const IDENT_STRING_H="$Date: 2009/05/15 06:57:43 $"; // includes #include "pa_types.h" @@ -431,6 +431,7 @@ public: langs=alang; } } + String(int value, char *format); String(Body abody, Language alang): body(abody), langs(alang) { ASSERT_STRING_INVARIANT(*this); } @@ -580,7 +581,7 @@ inline size_t get_length(S #ifndef HASH_CODE_CACHING /// simple hash code of string. used by Hash inline uint hash_code(const String::Body self) { - return self.get_hash_code() + return self.get_hash_code(); } #endif