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

Unified Diff: build/build_config.h

Issue 248843004: Remove WCHAR_T_IS_UNSIGNED definition (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 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: build/build_config.h
diff --git a/build/build_config.h b/build/build_config.h
index 57eb9a8cc288e777b580050704a77b559248b1ed..aeb1340879b7a17925b89e5f5debf6f51c275630 100644
--- a/build/build_config.h
+++ b/build/build_config.h
@@ -139,7 +139,7 @@
#error Please add support for your compiler in build/build_config.h
#endif
-#if defined(__ARMEL__) && !defined(OS_IOS)
+#if (defined(__ARMEL__) || defined(__aarch64__)) && !defined(OS_IOS)
#define WCHAR_T_IS_UNSIGNED 1
Nico 2014/04/23 18:18:12 This looks broken. The only user of this define th
rmcilroy 2014/04/24 09:58:41 That sounds much more sensible - done.
#elif defined(__MIPSEL__)
#define WCHAR_T_IS_UNSIGNED 0
« 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