From 5af131e3035a7057b0c5f321b5e1007a102548f8 Mon Sep 17 00:00:00 2001 From: Robin Sommer Date: Tue, 24 Jul 2012 16:10:52 -0700 Subject: [PATCH] Compile fix. --- src/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.h b/src/util.h index 4435b830dd..048ec384e3 100644 --- a/src/util.h +++ b/src/util.h @@ -353,7 +353,7 @@ struct CompareString { bool operator()(char const *a, char const *b) const { - return std::strcmp(a, b) < 0; + return strcmp(a, b) < 0; } };