index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
libcxx
/
include
/
ostream
Commit message (
Expand
)
Author
Age
Files
Lines
*
Add forward declaration of operator<< in <string_view> as required.
Eric Fiselier
2019-09-25
1
-1
/
+1
*
Implement LWG2221: 'Formatted output for nullptr_t' Reviewed as: https://revi...
Marshall Clow
2019-07-01
1
-0
/
+5
*
Update more file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
1
-4
/
+3
*
Second part of P0482 - char8_t. Reviewed as https://reviews.llvm.org/D55308
Marshall Clow
2018-12-11
1
-0
/
+1
*
[libcxx] Don't depend on availability markup to provide the streams in the dylib
Louis Dionne
2018-12-06
1
-1
/
+1
*
[libcxx] Remove _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY
Louis Dionne
2018-10-16
1
-8
/
+8
*
Revert "Implement LWG 2221 - No formatted output operator for nullptr."
Volodymyr Sapsai
2018-09-19
1
-10
/
+1
*
Implement LWG 2221 - No formatted output operator for nullptr. Reviewed as ht...
Marshall Clow
2018-09-19
1
-1
/
+10
*
[libc++] Take 2: Replace uses of _LIBCPP_ALWAYS_INLINE by _LIBCPP_INLINE_VISI...
Louis Dionne
2018-07-11
1
-2
/
+2
*
Revert "[libc++] Replace uses of _LIBCPP_ALWAYS_INLINE by _LIBCPP_INLINE_VISI...
Louis Dionne
2018-07-05
1
-2
/
+2
*
[libc++] Replace uses of _LIBCPP_ALWAYS_INLINE by _LIBCPP_INLINE_VISIBILITY
Louis Dionne
2018-07-05
1
-2
/
+2
*
Fix improperly failing test - and the code it was testing. Thanks to Stephan ...
Marshall Clow
2018-03-22
1
-3
/
+1
*
Fix failure on C++03 bots
Marshall Clow
2017-11-27
1
-0
/
+2
*
Implement LWG#2948: unique_ptr does not define operator<< for stream output
Marshall Clow
2017-11-27
1
-0
/
+12
*
Add markup for libc++ dylib availability
Mehdi Amini
2017-05-04
1
-0
/
+2
*
Cleanup _LIBCPP_HAS_NO_<c++11-feature> in the input.output library
Eric Fiselier
2017-04-18
1
-7
/
+5
*
Replace _LIBCPP_HAS_NO_DELETED_FUNCTIONS with _LIBCPP_CXX03_LANG
Eric Fiselier
2017-01-06
1
-1
/
+1
*
[NFC] Rename _LIBCPP_TYPE_VIS_ONLY to _LIBCPP_TEMPLATE_VIS
Eric Fiselier
2017-01-04
1
-3
/
+3
*
[libc++] Add _LIBCPP_EXTERN_TEMPLATE_INLINE_VISIBILITY to support GCC ABI com...
Eric Fiselier
2016-09-16
1
-54
/
+23
*
[libc++] Fix and document visibility attributes for Clang, GCC and Windows.
Eric Fiselier
2016-09-15
1
-2
/
+2
*
Implement std::string_view as described in http://wg21.link/P0254R1. Reviewed...
Marshall Clow
2016-07-21
1
-0
/
+8
*
Revert "Remove visibility attributes from out-of-class method definitions in ...
Evgeniy Stepanov
2016-01-08
1
-16
/
+16
*
Remove visibility attributes from out-of-class method definitions in iostreams.
Evgeniy Stepanov
2015-12-09
1
-16
/
+16
*
Make seeking on an ostream that has eofbit set work correctly. Fixes PR#21361
Marshall Clow
2015-06-22
1
-2
/
+2
*
K-ballo pointed out *another* mistype in my change
Marshall Clow
2014-09-17
1
-6
/
+2
*
Forgot 'const' on my last checkin
Marshall Clow
2014-09-16
1
-4
/
+4
*
Some of the synopsis was left out of these headers, and the copy construction...
Marshall Clow
2014-09-16
1
-0
/
+16
*
Remove tabs that crept in during an earlier refactoring. No functionality change
Marshall Clow
2014-02-16
1
-11
/
+11
*
Refactored a bunch of duplicated code in <ostream>. Made a new routine called...
Marshall Clow
2013-12-10
1
-218
/
+24
*
LWG issue 2341; Make the two variants of basic_ostream::seekp and basic_istre...
Marshall Clow
2013-10-31
1
-3
/
+8
*
Add a deleted assignment operator for basic_ostream; LWG Issue #2067
Marshall Clow
2013-08-14
1
-0
/
+4
*
Nico Rieck: this patch series fixes visibility issues on Windows as explaine...
Howard Hinnant
2013-08-12
1
-5
/
+5
*
No functionality change at this time. I've split _LIBCPP_VISIBLE up into two...
Howard Hinnant
2013-03-06
1
-3
/
+3
*
Optimize basic_ostream::write by having it call sputn instead of sputc.
Howard Hinnant
2013-01-15
1
-11
/
+2
*
Provide a way to disable use of extern templates in libc++. This is intended...
Howard Hinnant
2012-11-06
1
-2
/
+2
*
Dimitry Andric: many visibility fixes. Howard: Much appreciated. Can you ...
Howard Hinnant
2012-09-14
1
-1
/
+1
*
Modernize conversion to bool to the explicit bool conversion operator (librar...
Howard Hinnant
2012-02-21
1
-1
/
+1
*
Fix http://llvm.org/bugs/show_bug.cgi?id=11752
Howard Hinnant
2012-01-12
1
-2
/
+2
*
Further macro protection by replacing _[A-Z] with _[A-Z]p
Howard Hinnant
2011-11-29
1
-59
/
+59
*
Windows support by Ruben Van Boxem.
Howard Hinnant
2011-10-17
1
-0
/
+2
*
Fixing up some ABI issues
Howard Hinnant
2011-07-07
1
-0
/
+2
*
Chris Jefferson found a missing const (Bugzilla 9632)
Howard Hinnant
2011-04-05
1
-1
/
+1
*
license change
Howard Hinnant
2010-11-16
1
-2
/
+2
*
visibility-decoration.
Howard Hinnant
2010-09-22
1
-2
/
+2
*
Changed __config to react to all of clang's currently documented has_feature ...
Howard Hinnant
2010-09-04
1
-6
/
+6
*
Fixing whitespace problems
Howard Hinnant
2010-08-22
1
-62
/
+62
*
Wiped out some non-ascii characters that snuck into the copyright.
Howard Hinnant
2010-05-11
1
-1
/
+1
*
libcxx initial import
Howard Hinnant
2010-05-11
1
-0
/
+1291