aboutsummaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2014-01-16 18:31:11 +0000
committerVincent Richard <[email protected]>2014-01-16 18:31:11 +0000
commit10859dc9ef90668c6a28d37ec881d20d3df3e28e (patch)
treea5255e92c0da2269bad1a8e6d38cd20f1c573e22 /CMakeLists.txt
parentFixes for socket using 'byte_t' type. (diff)
downloadvmime-10859dc9ef90668c6a28d37ec881d20d3df3e28e.tar.gz
vmime-10859dc9ef90668c6a28d37ec881d20d3df3e28e.zip
C++11 std::shared_ptr fixes.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
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;
}
"