[libc++] Add missing include in test

This commit is contained in:
Louis Dionne 2020-06-30 14:16:00 -04:00
parent 9b500e564a
commit 73370b2c0c
1 changed files with 2 additions and 1 deletions

View 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>