[cfe-commits] [libcxx] r153194 - /libcxx/trunk/include/system_error

Howard Hinnant hhinnant at apple.com
Wed Mar 21 09:18:57 PDT 2012


Author: hhinnant
Date: Wed Mar 21 11:18:57 2012
New Revision: 153194

URL: http://llvm.org/viewvc/llvm-project?rev=153194&view=rev
Log:
It appears that the standard accidentally removed the default constructor for error_category.  I'm putting it back in.  This fixes http://llvm.org/bugs/show_bug.cgi?id=12321.

Modified:
    libcxx/trunk/include/system_error

Modified: libcxx/trunk/include/system_error
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/system_error?rev=153194&r1=153193&r2=153194&view=diff
==============================================================================
--- libcxx/trunk/include/system_error (original)
+++ libcxx/trunk/include/system_error Wed Mar 21 11:18:57 2012
@@ -366,8 +366,8 @@
 public:
     virtual ~error_category() _NOEXCEPT;
 
-private:
     error_category() _NOEXCEPT;
+private:
     error_category(const error_category&);// = delete;
     error_category& operator=(const error_category&);// = delete;
 





More information about the cfe-commits mailing list