You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stdcxx.apache.org by el...@apache.org on 2008/06/18 05:21:08 UTC

svn commit: r669071 - /stdcxx/branches/4.3.x/include/tuple

Author: elemings
Date: Tue Jun 17 20:21:08 2008
New Revision: 669071

URL: http://svn.apache.org/viewvc?rev=669071&view=rev
Log:
2008-06-17  Eric Lemings <er...@roguewave.com>

	STDCXX-958
	* include/tuple: Check _RWSTD_EXT_CXX_0X macro _after_ including
	<rw/_defs.h> header.


Modified:
    stdcxx/branches/4.3.x/include/tuple

Modified: stdcxx/branches/4.3.x/include/tuple
URL: http://svn.apache.org/viewvc/stdcxx/branches/4.3.x/include/tuple?rev=669071&r1=669070&r2=669071&view=diff
==============================================================================
--- stdcxx/branches/4.3.x/include/tuple (original)
+++ stdcxx/branches/4.3.x/include/tuple Tue Jun 17 20:21:08 2008
@@ -27,14 +27,15 @@
  * 
  **************************************************************************/
 
-#if defined _RWSTD_NO_EXT_CXX_0X
-#  error _RWSTD_NO_EXT_CXX_0X defined and C++0x header included
-#endif   // defined _RWSTD_NO_EXT_CXX_0X
-
 #ifndef _RWSTD_TUPLE_INCLUDED
 #  define _RWSTD_TUPLE_INCLUDED
 
 #  include <rw/_defs.h>
+
+#  if defined _RWSTD_NO_EXT_CXX_0X
+#    error _RWSTD_NO_EXT_CXX_0X defined and C++0x header included
+#  endif   // defined _RWSTD_NO_EXT_CXX_0X
+
 #  include <rw/_meta_help.h>        // for __rw_integral_constant
 #  include <rw/_tuple.h>
 #  include <rw/_tuple_traits.h>