< Previous by Date | Date Index | Next by Date > |
< Previous in Thread | Thread Index | Next in Thread > |
On Apr 17, 2006, at 21.24, Bruce Lowekamp wrote:
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?
True, and I was under the impression we fixed that already. Oops. Thanks Alan