Index: src/libchcore/TConfig.h =================================================================== diff -u -N -rd9527df01ee91b35d9a5fdccb80ded25a9c8265f -r847d6d10ae5b9a694b9b54d3b66051239d5cbea9 --- src/libchcore/TConfig.h (.../TConfig.h) (revision d9527df01ee91b35d9a5fdccb80ded25a9c8265f) +++ src/libchcore/TConfig.h (.../TConfig.h) (revision 847d6d10ae5b9a694b9b54d3b66051239d5cbea9) @@ -133,13 +133,13 @@ }; template - inline void SetConfigValue(TConfig& rConfig, PCTSTR pszPropName, const Type& rValue) + void SetConfigValue(TConfig& rConfig, PCTSTR pszPropName, const Type& rValue) { rConfig.SetValue(pszPropName, rValue); } template - inline Type GetConfigValueDef(const TConfig& rConfig, PCTSTR pszPropName, const Type& rDefault) + Type GetConfigValueDef(const TConfig& rConfig, PCTSTR pszPropName, const Type& rDefault) { Type tValue; if (!rConfig.GetValue(pszPropName, tValue)) @@ -148,7 +148,7 @@ } template - inline bool GetConfigValue(const TConfig& rConfig, PCTSTR pszPropName, Type& rValue) + bool GetConfigValue(const TConfig& rConfig, PCTSTR pszPropName, Type& rValue) { return rConfig.GetValue(pszPropName, rValue); }