diff options
| author | Eric Fiselier <eric@efcs.ca> | 2017-06-01 02:29:37 +0000 |
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2017-06-01 02:29:37 +0000 |
| commit | 9ffacf3d16ae441780c89f6426994f0080192b4b (patch) | |
| tree | 3eb2a609df03b11ec2cd6196dfeb8695514cc6f2 /libcxx/include/stdexcept | |
| parent | def3c375e091abc0e1a3c29cce2b52bdf668fea0 (diff) | |
| download | bcm5719-llvm-9ffacf3d16ae441780c89f6426994f0080192b4b.tar.gz bcm5719-llvm-9ffacf3d16ae441780c89f6426994f0080192b4b.zip | |
Fix more unreserved names
llvm-svn: 304383
Diffstat (limited to 'libcxx/include/stdexcept')
| -rw-r--r-- | libcxx/include/stdexcept | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/include/stdexcept b/libcxx/include/stdexcept index d501d091608..95a96cc0767 100644 --- a/libcxx/include/stdexcept +++ b/libcxx/include/stdexcept @@ -61,9 +61,9 @@ class _LIBCPP_HIDDEN __libcpp_refstring bool __uses_refcount() const; public: - explicit __libcpp_refstring(const char* msg); - __libcpp_refstring(const __libcpp_refstring& s) _NOEXCEPT; - __libcpp_refstring& operator=(const __libcpp_refstring& s) _NOEXCEPT; + explicit __libcpp_refstring(const char* __msg); + __libcpp_refstring(const __libcpp_refstring& __s) _NOEXCEPT; + __libcpp_refstring& operator=(const __libcpp_refstring& __s) _NOEXCEPT; ~__libcpp_refstring(); const char* c_str() const _NOEXCEPT {return __imp_;} |

