diff options
author | JF Bastien <jfb@google.com> | 2015-02-24 01:59:38 +0000 |
---|---|---|
committer | JF Bastien <jfb@google.com> | 2015-02-24 01:59:38 +0000 |
commit | 2ca8c6b9ca2c13729a84cfa68311d61b2416e4b2 (patch) | |
tree | c0891296659a8cda2720aaf8b286e0324461ba50 /libcxx/src/config_elast.h | |
parent | 8e29dec98657764a907746694a3b835860828f2c (diff) | |
download | bcm5719-llvm-2ca8c6b9ca2c13729a84cfa68311d61b2416e4b2.tar.gz bcm5719-llvm-2ca8c6b9ca2c13729a84cfa68311d61b2416e4b2.zip |
Reword ELAST warning
Summary:
GCC emits a pretty amusing warning when there are apostrophes in a #warning:
```warning: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wliteral-suffix]```
Reword the warning to avoid this, and be more consistent with other warnings in libc++.
Reviewers: danalbert
Subscribers: llvm-commits
Differential Revision: http://reviews.llvm.org/D7818
llvm-svn: 230298
Diffstat (limited to 'libcxx/src/config_elast.h')
-rw-r--r-- | libcxx/src/config_elast.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/src/config_elast.h b/libcxx/src/config_elast.h index 08d0103e8b8..9d6a76b0c00 100644 --- a/libcxx/src/config_elast.h +++ b/libcxx/src/config_elast.h @@ -30,7 +30,7 @@ #define _LIBCPP_ELAST _sys_nerr #else // Warn here so that the person doing the libcxx port has an easier time: -#warning This platform's ELAST hasn't been ported yet +#warning ELAST for this platform not yet implemented #endif #endif // _LIBCPP_CONFIG_ELAST |