[reSIProcate] HashMap for g++ > 3

Bruce Lowekamp lowekamp at sipeerior.com
Mon Apr 17 22:24:26 CDT 2006


I'm still not a native C++ speaker, but shouldn't the line at the
beginning of rutil/HashMap.hxx
#  if ( (__GNUC__ == 3) && (__GNUC_MINOR__ >= 1) )
be
#  if ( (__GNUC__ > 3) || ( (__GNUC__ == 3) && (__GNUC_MINOR__ >= 1) ) )

otherwise we're all just using regular std::map on most modern unices?

Bruce



More information about the resiprocate-devel mailing list