diff options
author | Vincent Richard <[email protected]> | 2014-01-16 18:31:11 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2014-01-16 18:31:11 +0000 |
commit | 10859dc9ef90668c6a28d37ec881d20d3df3e28e (patch) | |
tree | a5255e92c0da2269bad1a8e6d38cd20f1c573e22 /CMakeLists.txt | |
parent | Fixes for socket using 'byte_t' type. (diff) | |
download | vmime-10859dc9ef90668c6a28d37ec881d20d3df3e28e.tar.gz vmime-10859dc9ef90668c6a28d37ec881d20d3df3e28e.zip |
C++11 std::shared_ptr fixes.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e20d00d1..25f74e64 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -815,7 +815,7 @@ CHECK_CXX_SOURCE_COMPILES( #include <memory> struct A { int foo; }; int main() { - std::shared_ptr <A> a = std::make_shared <A>(a); + std::shared_ptr <A> a = std::make_shared <A>(); return 0; } " |