From f618c85c99c3d8771e0e39766410aeece787aa0a Mon Sep 17 00:00:00 2001 From: kervala Date: Sun, 3 Oct 2010 22:47:27 +0200 Subject: [PATCH] Fixed: Compilation under GCC 4.0.1 --- code/ryzom/common/src/game_share/mirrored_data_set.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ryzom/common/src/game_share/mirrored_data_set.cpp b/code/ryzom/common/src/game_share/mirrored_data_set.cpp index b9e2eba32..ce18dedbb 100644 --- a/code/ryzom/common/src/game_share/mirrored_data_set.cpp +++ b/code/ryzom/common/src/game_share/mirrored_data_set.cpp @@ -1477,7 +1477,7 @@ void displayValueLine( const std::string& propName, const char *valueFormat, con // This specialisation is necessary to compile it with gcc because of toString( valueFormat, value() ) template <> -inline void displayValueLine( const std::string& propName, const char * /* valueFormat */, const char *typeString, CEntityId*, const CMirroredDataSet *dataset, const TDataSetRow& entityIndex, TPropertyIndex propIndex, const char *flagsString, NLMISC::CLog& log, bool /* typeIsBool */, bool typeIsEntityId ) +void displayValueLine( const std::string& propName, const char * /* valueFormat */, const char *typeString, CEntityId*, const CMirroredDataSet *dataset, const TDataSetRow& entityIndex, TPropertyIndex propIndex, const char *flagsString, NLMISC::CLog& log, bool /* typeIsBool */, bool typeIsEntityId ) { CMirrorPropValue value( const_cast(*dataset), entityIndex, propIndex ); TValueToStringFunc valueToString;