[pygccxml-commit] SF.net SVN: pygccxml: [1284] pygccxml_dev/unittests/data
Brought to you by:
mbaas,
roman_yakovenko
|
From: <rom...@us...> - 2008-03-22 22:09:57
|
Revision: 1284
http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1284&view=rev
Author: roman_yakovenko
Date: 2008-03-22 15:10:00 -0700 (Sat, 22 Mar 2008)
Log Message:
-----------
porting "data" files to msvc 9.0
Modified Paths:
--------------
pygccxml_dev/unittests/data/attributes.hpp
pygccxml_dev/unittests/data/remove_template_defaults.hpp
Modified: pygccxml_dev/unittests/data/attributes.hpp
===================================================================
--- pygccxml_dev/unittests/data/attributes.hpp 2008-03-17 07:45:39 UTC (rev 1283)
+++ pygccxml_dev/unittests/data/attributes.hpp 2008-03-22 22:10:00 UTC (rev 1284)
@@ -6,6 +6,8 @@
#ifndef __atributes_hpp__
#define __atributes_hpp__
+#ifdef __GCCXML__
+
#define _out_ __attribute( (gccxml( "out" ) ) )
#define _sealed_ __attribute( (gccxml( "sealed" ) ) )
#define _no_throw_ __attribute( (gccxml( "no throw" ) ) )
@@ -20,5 +22,7 @@
}
+#endif//__GCCXML__
+
#endif//__atributes_hpp__
Modified: pygccxml_dev/unittests/data/remove_template_defaults.hpp
===================================================================
--- pygccxml_dev/unittests/data/remove_template_defaults.hpp 2008-03-17 07:45:39 UTC (rev 1283)
+++ pygccxml_dev/unittests/data/remove_template_defaults.hpp 2008-03-22 22:10:00 UTC (rev 1284)
@@ -13,7 +13,11 @@
#else
#include <hash_set>
#include <hash_map>
- #define HASH_XXX_NS std
+ #ifdef __GCCXML__
+ #define HASH_XXX_NS std
+ #else
+ #define HASH_XXX_NS stdext
+ #endif//GCCXML
#endif
#include <string>
#include <vector>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|