projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f03be9d
)
[libc++] NFC: Remove warning about non-void function returning void
author
Louis Dionne
<ldionne@apple.com>
Mon, 2 Nov 2020 13:25:16 +0000
(08:25 -0500)
committer
Louis Dionne
<ldionne@apple.com>
Mon, 2 Nov 2020 13:25:44 +0000
(08:25 -0500)
libcxx/test/libcxx/utilities/any/allocator.pass.cpp
patch
|
blob
|
history
diff --git
a/libcxx/test/libcxx/utilities/any/allocator.pass.cpp
b/libcxx/test/libcxx/utilities/any/allocator.pass.cpp
index
9de8c5e
..
7891db6
100644
(file)
--- a/
libcxx/test/libcxx/utilities/any/allocator.pass.cpp
+++ b/
libcxx/test/libcxx/utilities/any/allocator.pass.cpp
@@
-77,7
+77,7
@@
namespace std {
using propagate_on_container_move_assignment = std::true_type;
using is_always_equal = std::true_type;
- Small* allocate(std::size_t) { assert(false); }
+ Small* allocate(std::size_t) { assert(false);
return nullptr;
}
template <typename ...Args>
void construct(Small* p, Args&& ...args) {