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

Unified Diff: third_party/cld/encodings/compact_lang_det/win/cld_commandlineflags.h

Issue 1956183002: CL for perf tryjob on linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: third_party/cld/encodings/compact_lang_det/win/cld_commandlineflags.h
diff --git a/third_party/cld/encodings/compact_lang_det/win/cld_commandlineflags.h b/third_party/cld/encodings/compact_lang_det/win/cld_commandlineflags.h
index 04375bf85248dc5cebc2ec5901501b96acd8992a..675a45d59380f8760703dcd202a943067c256cce 100644
--- a/third_party/cld/encodings/compact_lang_det/win/cld_commandlineflags.h
+++ b/third_party/cld/encodings/compact_lang_det/win/cld_commandlineflags.h
@@ -17,11 +17,17 @@
#undef DEFINE_int32
#define DEFINE_int32(name, default_value, comment) \
const int32 FLAGS_##name = default_value;
+#undef DEFINE_string
+#define DEFINE_string(name, default_value, comment) \
+ const string FLAGS_##name = default_value;
#undef DECLARE_bool
#define DECLARE_bool(name) extern const bool FLAGS_##name;
#undef DECLARE_int32
#define DECLARE_int32(name) extern int32 FLAGS_##name;
+#undef DECLARE_string
+#define DECLARE_string(name) extern string FLAGS_##name;
+
#endif

Powered by Google App Engine
This is Rietveld 408576698