[libc++] NFC: Remove warning about non-void function returning void
authorLouis Dionne <ldionne@apple.com>
Mon, 2 Nov 2020 13:25:16 +0000 (08:25 -0500)
committerLouis Dionne <ldionne@apple.com>
Mon, 2 Nov 2020 13:25:44 +0000 (08:25 -0500)
libcxx/test/libcxx/utilities/any/allocator.pass.cpp

index 9de8c5e..7891db6 100644 (file)
@@ -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) {