[libc++] Add missing include in test
authorLouis Dionne <ldionne@apple.com>
Tue, 30 Jun 2020 18:16:00 +0000 (14:16 -0400)
committerLouis Dionne <ldionne@apple.com>
Tue, 30 Jun 2020 18:16:47 +0000 (14:16 -0400)
libcxx/test/libcxx/containers/associative/non_const_comparator.verify.cpp

index d60b3be..61cdc2f 100644 (file)
@@ -12,8 +12,9 @@
 // Test that libc++ generates a warning diagnostic when the container is
 // provided a non-const callable comparator.
 
-#include <set>
 #include <map>
+#include <set>
+#include <type_traits> // for __invokable
 
 struct BadCompare {
   template <class T, class U>