diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-06-17 20:16:46 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-06-17 20:16:46 +0000 |
commit | d6f2355f25eab6be5fa845590fd7fee21b95b87d (patch) | |
tree | 0cca51bd0c7743b3c1fbcde40e4b75610075722c /libcxx/include | |
parent | 62d42cd088dd327562a92d580de48fdc1d1c7c5f (diff) | |
download | bcm5719-llvm-d6f2355f25eab6be5fa845590fd7fee21b95b87d.tar.gz bcm5719-llvm-d6f2355f25eab6be5fa845590fd7fee21b95b87d.zip |
Add missing space between >> in template declaration. Fixes C++03 build.
llvm-svn: 273037
Diffstat (limited to 'libcxx/include')
-rw-r--r-- | libcxx/include/iomanip | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/include/iomanip b/libcxx/include/iomanip index 2057a5d1f00..9efcbe03d1a 100644 --- a/libcxx/include/iomanip +++ b/libcxx/include/iomanip @@ -567,7 +567,7 @@ __quoted_input ( basic_istream<_CharT, _Traits> &__is, _String & __string, _Char } -template <class _CharT, class _Iter, class _Traits=char_traits<_CharT>> +template <class _CharT, class _Iter, class _Traits=char_traits<_CharT> > struct __quoted_output_proxy { _Iter __first; |