You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by vi...@apache.org on 2008/07/16 22:37:35 UTC

svn commit: r677418 - /stdcxx/branches/4.3.x/tests/utilities/20.meta.unary.prop.cpp

Author: vitek
Date: Wed Jul 16 13:37:35 2008
New Revision: 677418

URL: http://svn.apache.org/viewvc?rev=677418&view=rev
Log:
2008-07-16  Travis Vitek  <vi...@roguewave.com>

    * tests/utilities/20.meta.unary.prop.cpp: Add empty throw spec to
    help convince eccp-3.10 that functions won't throw.


Modified:
    stdcxx/branches/4.3.x/tests/utilities/20.meta.unary.prop.cpp

Modified: stdcxx/branches/4.3.x/tests/utilities/20.meta.unary.prop.cpp
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/tests/utilities/20.meta.unary.prop.cpp?rev=677418&r1=677417&r2=677418&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/tests/utilities/20.meta.unary.prop.cpp (original)
+++ stdcxx/branches/4.3.x/tests/utilities/20.meta.unary.prop.cpp Wed Jul 16 13:37:35 2008
@@ -144,16 +144,16 @@
 };
 
 struct no_trivial_ctor_t {
-    no_trivial_ctor_t () { }
+    no_trivial_ctor_t () _THROWS (()) { }
 };
 
 struct no_trivial_copy_t {
-    no_trivial_copy_t (const no_trivial_copy_t&) { }
+    no_trivial_copy_t (const no_trivial_copy_t&) _THROWS (()) { }
 };
 
 struct no_trivial_assign_t {
     no_trivial_assign_t&
-    operator= (const no_trivial_assign_t&) {
+    operator= (const no_trivial_assign_t&) _THROWS (()) {
         return *this;
     }
 };