diff options
author | Howard Hinnant <hhinnant@apple.com> | 2012-09-14 00:39:16 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2012-09-14 00:39:16 +0000 |
commit | aeb85680fb688e96ba2d2fc7703ae6e57cc44097 (patch) | |
tree | bbdd33a4628645c6a5a0af91f42a642c296bf09f /libcxx/include/regex | |
parent | f6e2bc07eb3d0e5a1ab25a0b84e0c3aa42668a5a (diff) | |
download | bcm5719-llvm-aeb85680fb688e96ba2d2fc7703ae6e57cc44097.tar.gz bcm5719-llvm-aeb85680fb688e96ba2d2fc7703ae6e57cc44097.zip |
Dimitry Andric: many visibility fixes. Howard: Much appreciated. Can you send me a patch to CREDITS.TXT?
llvm-svn: 163862
Diffstat (limited to 'libcxx/include/regex')
-rw-r--r-- | libcxx/include/regex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/include/regex b/libcxx/include/regex index 16d6102c958..3918ee0d678 100644 --- a/libcxx/include/regex +++ b/libcxx/include/regex @@ -1231,11 +1231,11 @@ regex_traits<_CharT>::__value(wchar_t __ch, int __radix) const template <class _CharT> class __node; -template <class _BidirectionalIterator> class sub_match; +template <class _BidirectionalIterator> class _LIBCPP_VISIBLE sub_match; template <class _BidirectionalIterator, class _Allocator = allocator<sub_match<_BidirectionalIterator> > > -class match_results; +class _LIBCPP_VISIBLE match_results; template <class _CharT> struct __state |