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
/
vector
Commit message (
Expand
)
Author
Age
Files
Lines
*
[libc++] Rework compressed pair constructors.
Eric Fiselier
2019-12-16
1
-7
/
+7
*
Rename __is_foo_iterator traits to reflect their Cpp17 nature.
Eric Fiselier
2019-11-18
1
-52
/
+52
*
[libc++] Rename __to_raw_pointer to __to_address.
Eric Fiselier
2019-11-16
1
-9
/
+9
*
Recommit r370502: Make `vector` unconditionally move elements when
Eric Fiselier
2019-09-13
1
-3
/
+7
*
[libc++] Revert "Make `vector` unconditionally move elements when exceptions ...
Louis Dionne
2019-09-05
1
-6
/
+3
*
Make `vector` unconditionally move elements when exceptions are disabled.
Eric Fiselier
2019-08-30
1
-3
/
+6
*
[libc++] Fix visibility of __vector_base_common on GCC
Louis Dionne
2019-08-28
1
-1
/
+1
*
Fix PR35637: suboptimal codegen for `vector<unsigned char>`.
Eric Fiselier
2019-07-28
1
-95
/
+61
*
Add visibility attributes and inline to some vector methods.
Eric Fiselier
2019-03-19
1
-3
/
+8
*
Remove exception throwing debug mode handler support.
Eric Fiselier
2019-03-18
1
-4
/
+4
*
Mark vector::operator[] and front/back as noexcept. We already do this for st...
Marshall Clow
2019-03-15
1
-8
/
+8
*
Update more file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
1
-4
/
+3
*
Implement P1209 - Adopt Consistent Container Erasure from Library Fundamental...
Marshall Clow
2018-12-14
1
-0
/
+17
*
Off-by-one errors strike again. Thank goodness for ASAN and the bots.
Marshall Clow
2018-10-23
1
-4
/
+14
*
When filling a vector<bool> with stuff, initialize the last word of the stora...
Marshall Clow
2018-10-23
1
-0
/
+4
*
Fix even more Clang warnings.
Eric Fiselier
2018-10-01
1
-1
/
+1
*
Implement the infrastructure for feature-test macros. Very few actual feature...
Marshall Clow
2018-09-12
1
-0
/
+1
*
[asan] Update a vector's storage annotation during destruction. Reviewed as h...
Marshall Clow
2018-09-07
1
-2
/
+3
*
[libc++] Take 2: Replace uses of _LIBCPP_ALWAYS_INLINE by _LIBCPP_INLINE_VISI...
Louis Dionne
2018-07-11
1
-1
/
+1
*
Revert "[libc++] Replace uses of _LIBCPP_ALWAYS_INLINE by _LIBCPP_INLINE_VISI...
Louis Dionne
2018-07-05
1
-1
/
+1
*
[libc++] Replace uses of _LIBCPP_ALWAYS_INLINE by _LIBCPP_INLINE_VISIBILITY
Louis Dionne
2018-07-05
1
-1
/
+1
*
Fix PR37694 - std::vector doesn't correctly move construct allocators.
Eric Fiselier
2018-06-05
1
-6
/
+16
*
Change the names of two private methods: allocate -> __vallocate and dealloca...
Marshall Clow
2018-05-22
1
-41
/
+41
*
Implement deduction guides for vector
Marshall Clow
2018-05-21
1
-7
/
+28
*
First part of P0600 - '[[nodiscard] in the standard library'. Mark the 'empty...
Marshall Clow
2017-11-15
1
-2
/
+2
*
[libc++] Fix PR34898 - vector iterator constructors and assign method perform...
Eric Fiselier
2017-10-17
1
-3
/
+14
*
[libc++] Clean up cl warning 4231 disabling
Shoaib Meenai
2017-07-14
1
-7
/
+0
*
[Libc++] Use #pragma push_macro/pop_macro to better handle min/max on Windows
Eric Fiselier
2017-05-31
1
-2
/
+6
*
Replace _LIBCPP_HAS_NO_<C++03 feature> with _LIBCPP_CXX03_LANG in vector.
Eric Fiselier
2017-04-16
1
-65
/
+60
*
[libcxx] Improve code generation for vector::clear().
Bruce Mitchener
2017-03-23
1
-2
/
+4
*
Change the return type of emplace_[front|back] back to void when building wit...
Marshall Clow
2017-01-24
1
-3
/
+20
*
[NFC] Rename _LIBCPP_TYPE_VIS_ONLY to _LIBCPP_TEMPLATE_VIS
Eric Fiselier
2017-01-04
1
-4
/
+4
*
Fix debug mode for vector/list and cleanup tests
Eric Fiselier
2016-12-28
1
-24
/
+42
*
Fix unused parameters and variables
Eric Fiselier
2016-12-23
1
-12
/
+25
*
Enable the -Wsign-compare warning to better support MSVC
Eric Fiselier
2016-12-11
1
-1
/
+3
*
[libcxx] Fix max_size() across all containers
Eric Fiselier
2016-11-23
1
-1
/
+2
*
[libc++] Fix and document visibility attributes for Clang, GCC and Windows.
Eric Fiselier
2016-09-15
1
-1
/
+1
*
Add an _LIBCPP_NORETURN inline function named __throw_XXX for each exception ...
Marshall Clow
2016-08-25
1
-12
/
+4
*
Implement P0084r2. Changing emplace return types.
Eric Fiselier
2016-07-21
1
-6
/
+9
*
Always use the allocator to construct/destruct elements of a deque/vector. Fi...
Marshall Clow
2016-07-11
1
-2
/
+2
*
Fix bug #27260 - add missing swap(reference, reference) to vector<bool>.
Marshall Clow
2016-04-07
1
-0
/
+1
*
Make __wrap_iter work with GCC again
Eric Fiselier
2016-02-20
1
-1
/
+2
*
Cleanup: move visibility/linkage attributes to the first declaration.
Evgeniy Stepanov
2015-11-07
1
-3
/
+6
*
implement more of N4258 - Cleaning up noexcept in the standard library. Speci...
Marshall Clow
2015-08-18
1
-17
/
+11
*
Add missing instrumentation in vector::insert - Patch from Anna Zaks
Eric Fiselier
2015-07-18
1
-0
/
+2
*
Move bits from N4258. Mark vector's move-constructor unconditionally noexcept...
Marshall Clow
2015-07-14
1
-0
/
+16
*
Implement the first part of N4258: 'Cleaning up noexcept in the Library'. Thi...
Marshall Clow
2015-07-13
1
-54
/
+32
*
While applying N4258, I forgot about LWG#2455, which modified the modificatio...
Marshall Clow
2015-06-04
1
-17
/
+3
*
More N4258 changes. This time vector's constructors
Marshall Clow
2015-06-04
1
-1
/
+29
*
In many places, there was an #ifdef/#else block that selected one of two impl...
Marshall Clow
2015-04-07
1
-7
/
+1
[next]