diff options
author | Eric Fiselier <eric@efcs.ca> | 2016-04-29 00:37:56 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2016-04-29 00:37:56 +0000 |
commit | 7d7d2c0eddea029c25d19755797f2c968e95c567 (patch) | |
tree | 76c0cd1a4da1753e7011bfb7a62badfd48486ebd | |
parent | f463a8a424e7e1c141aa7d9b96f1898183d2b680 (diff) | |
download | bcm5719-llvm-7d7d2c0eddea029c25d19755797f2c968e95c567.tar.gz bcm5719-llvm-7d7d2c0eddea029c25d19755797f2c968e95c567.zip |
Add proper include for unique_ptr. Patch from STL@microsoft.com
llvm-svn: 267958
-rw-r--r-- | libcxx/test/std/utilities/meta/meta.rel/is_callable.pass.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libcxx/test/std/utilities/meta/meta.rel/is_callable.pass.cpp b/libcxx/test/std/utilities/meta/meta.rel/is_callable.pass.cpp index 7de65835f73..328b818aa60 100644 --- a/libcxx/test/std/utilities/meta/meta.rel/is_callable.pass.cpp +++ b/libcxx/test/std/utilities/meta/meta.rel/is_callable.pass.cpp @@ -18,6 +18,7 @@ #include <type_traits> #include <functional> +#include <memory> #include "test_macros.h" |