Revision: 1160
http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1160&view=rev
Author: roman_yakovenko
Date: 2007-11-20 05:34:25 -0800 (Tue, 20 Nov 2007)
Log Message:
-----------
adding new test case
Modified Paths:
--------------
pygccxml_dev/unittests/data/type_traits.hpp
Modified: pygccxml_dev/unittests/data/type_traits.hpp
===================================================================
--- pygccxml_dev/unittests/data/type_traits.hpp 2007-11-20 07:12:25 UTC (rev 1159)
+++ pygccxml_dev/unittests/data/type_traits.hpp 2007-11-20 13:34:25 UTC (rev 1160)
@@ -11,6 +11,7 @@
#include <iostream>
#include <vector>
#include <set>
+#include <map>
#include "noncopyable.hpp"
#define TYPE_PERMUTATION( BASE, NAME ) \
@@ -82,11 +83,12 @@
struct instantiate_tmpls{
instantiate_tmpls()
- : v(), s()
+ : v(), s(), ms()
{}
std::vector< int > v;
std::set< std::string > s;
+ std::multimap< std::string, std::string > ms;
};
@@ -175,6 +177,7 @@
typedef detail::y_type y_type;
typedef std::vector< int > vector_of_int_type;
typedef std::set< std::string > string_set_type;
+ typedef std::multimap< std::string, std::string > s2s_multimap_type;
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|