From: <de...@us...> - 2003-02-03 19:17:50
|
Update of /cvsroot/csp/APPLICATIONS/CSPSim/Include In directory sc8-pr-cvs1:/tmp/cvs-serv21568 Modified Files: SimpleConfig.h Log Message: # if defined(_MSC_VER) && (_MSC_VER <= 1200) #pragma warning (disable : 4786) # endif class HashString { public: size_t operator()(std::string const &str) const { Index: SimpleConfig.h =================================================================== RCS file: /cvsroot/csp/APPLICATIONS/CSPSim/Include/SimpleConfig.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SimpleConfig.h 2 Feb 2003 20:53:27 -0000 1.3 --- SimpleConfig.h 3 Feb 2003 19:17:45 -0000 1.4 *************** *** 340,344 **** class HashString { public: ! bool operator()(std::string const &str) const { return HASH<char const *>()(str.c_str()); } --- 340,344 ---- class HashString { public: ! size_t operator()(std::string const &str) const { return HASH<char const *>()(str.c_str()); } |