diff options
author | Howard Hinnant <hhinnant@apple.com> | 2013-03-06 23:30:19 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2013-03-06 23:30:19 +0000 |
commit | 6e41256f6803ae236c51748c1b3472443b14c639 (patch) | |
tree | 230d9e55d39e9465389ce1e046b0958621c1169d /libcxx/include/codecvt | |
parent | 084fad6a51338e5a141c7f7b3b58d5050692c992 (diff) | |
download | bcm5719-llvm-6e41256f6803ae236c51748c1b3472443b14c639.tar.gz bcm5719-llvm-6e41256f6803ae236c51748c1b3472443b14c639.zip |
No functionality change at this time. I've split _LIBCPP_VISIBLE up into two flags: _LIBCPP_TYPE_VIS and _LIBCPP_FUNC_VIS. This is in preparation for taking advantage of clang's new __type_visibility__ attribute.
llvm-svn: 176593
Diffstat (limited to 'libcxx/include/codecvt')
-rw-r--r-- | libcxx/include/codecvt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libcxx/include/codecvt b/libcxx/include/codecvt index 6c44e343474..a6e4308e251 100644 --- a/libcxx/include/codecvt +++ b/libcxx/include/codecvt @@ -179,7 +179,7 @@ protected: template <class _Elem, unsigned long _Maxcode = 0x10ffff, codecvt_mode _Mode = (codecvt_mode)0> -class _LIBCPP_VISIBLE codecvt_utf8 +class _LIBCPP_TYPE_VIS codecvt_utf8 : public __codecvt_utf8<_Elem> { public: @@ -407,7 +407,7 @@ protected: template <class _Elem, unsigned long _Maxcode = 0x10ffff, codecvt_mode _Mode = (codecvt_mode)0> -class _LIBCPP_VISIBLE codecvt_utf16 +class _LIBCPP_TYPE_VIS codecvt_utf16 : public __codecvt_utf16<_Elem, _Mode & little_endian> { public: @@ -530,7 +530,7 @@ protected: template <class _Elem, unsigned long _Maxcode = 0x10ffff, codecvt_mode _Mode = (codecvt_mode)0> -class _LIBCPP_VISIBLE codecvt_utf8_utf16 +class _LIBCPP_TYPE_VIS codecvt_utf8_utf16 : public __codecvt_utf8_utf16<_Elem> { public: |