8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 08:03:04 +01:00

fixed gcc 3 build

This commit is contained in:
alexpeshkoff 2008-05-28 13:11:36 +00:00
parent 179c5fe295
commit 093901c134

View File

@ -257,12 +257,12 @@ static inline bool hasNewContext(const int value)
}
inline void CompiledStatement::append_raw_string(const char* string, USHORT len)
void CompiledStatement::append_raw_string(const char* string, USHORT len)
{
req_blr_data.add(reinterpret_cast<const UCHAR*>(string), len);
}
inline void CompiledStatement::append_raw_string(const UCHAR* string, USHORT len)
void CompiledStatement::append_raw_string(const UCHAR* string, USHORT len)
{
req_blr_data.add(string, len);
}