From fb2a0c5a5e4497847dcdf3d4402b38f321bf89ef Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Tue, 27 Sep 2011 18:58:27 +0000 Subject: [PATCH] Document the incompatibility that stems from Clang properly implement the rule that defines the implicit copy constructor/implicit copy asssignment operator as deleted when a move constructor or move assignment operator has been explicitly declared. This has hit a number of people because Boost 1.47.0's shared_ptr fails to declare a copy constructor. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140621 91177308-0d34-0410-b5e6-96231b3b80d8 --- www/compatibility.html | 40 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/www/compatibility.html b/www/compatibility.html index 783758f3ac..2102ccca7e 100644 --- a/www/compatibility.html +++ b/www/compatibility.html @@ -60,6 +60,12 @@
  • Parameter name lookup
  • +
  • C++11 compatibility + +
  • Objective-C++ compatibility