Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(890)

Unified Diff: third_party/cld/base/string_util.h

Issue 7112014: cld: Fix infinite recursion. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/cld/base/string_util.h
diff --git a/third_party/cld/base/string_util.h b/third_party/cld/base/string_util.h
index 7717e5b6fa7fa07437fd882e6b62869305967ce9..2f43ab86344d62254c581a69983d2c77d94da79c 100644
--- a/third_party/cld/base/string_util.h
+++ b/third_party/cld/base/string_util.h
@@ -20,7 +20,7 @@ inline int strcasecmp(const char* s1, const char* s2) {
}
#else
inline int strcasecmp(const char* s1, const char* s2) {
- return strcasecmp(s1, s2);
+ return ::strcasecmp(s1, s2);
}
#endif
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698