From: Douglas Gregor Date: Tue, 27 Sep 2011 18:58:27 +0000 (+0000) Subject: Document the incompatibility that stems from Clang properly implement X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fb2a0c5a5e4497847dcdf3d4402b38f321bf89ef;p=clang 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 --- 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