diff --git a/include/utility b/include/utility index 6db323e77..e9db2383a 100644 --- a/include/utility +++ b/include/utility @@ -178,6 +178,7 @@ template #include <__config> #include <__tuple> #include +#include #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) #pragma GCC system_header diff --git a/test/std/utilities/utility/synopsis.pass.cpp b/test/std/utilities/utility/synopsis.pass.cpp new file mode 100644 index 000000000..edb45cf61 --- /dev/null +++ b/test/std/utilities/utility/synopsis.pass.cpp @@ -0,0 +1,20 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is dual licensed under the MIT and the University of Illinois Open +// Source Licenses. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +// + +// #include + +#include + +int main() +{ + std::initializer_list x; +} +