Compile fix.

This commit is contained in:
Robin Sommer 2012-07-24 16:10:52 -07:00
parent 28c5723775
commit 5af131e303

View file

@ -353,7 +353,7 @@ struct CompareString
{ {
bool operator()(char const *a, char const *b) const bool operator()(char const *a, char const *b) const
{ {
return std::strcmp(a, b) < 0; return strcmp(a, b) < 0;
} }
}; };