Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(820)

Unified Diff: source/common/unicode/platform.h

Issue 314660043: ticket:12766 Escaping source code (Closed) Base URL: svn+ssh://source.icu-project.org/repos/icu/trunk/icu4c/
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: source/common/unicode/platform.h
===================================================================
--- source/common/unicode/platform.h (revision 39836)
+++ source/common/unicode/platform.h (working copy)
@@ -486,6 +486,13 @@
# define U_CPLUSPLUS_VERSION 1
#endif
+#if (U_PLATFORM == U_PF_AIX) && defined(__cplusplus) &&(U_CPLUSPLUS_VERSION < 11)
andy.heninger 2017/03/20 20:17:55 I think we should simply yank anything related to
srl295 2017/03/20 20:30:34 The point here is to try to make this code go awa
+// add in std::nullptr_t
+namespace std {
+ typedef decltype(nullptr) nullptr_t;
+};
+#endif
+
/**
* \def U_HAVE_RVALUE_REFERENCES
* Set to 1 if the compiler supports rvalue references.

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b