[pygccxml-commit] SF.net SVN: pygccxml:[1758] pyplusplus_dev
Brought to you by:
mbaas,
roman_yakovenko
|
From: <rom...@us...> - 2009-09-19 19:53:21
|
Revision: 1758
http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1758&view=rev
Author: roman_yakovenko
Date: 2009-09-19 18:59:58 +0000 (Sat, 19 Sep 2009)
Log Message:
-----------
updating history and fixing few compilation errors in code, found by new gcc
Modified Paths:
--------------
pyplusplus_dev/docs/history/history.rest
pyplusplus_dev/unittests/data/member_variables_to_be_exported.cpp
pyplusplus_dev/unittests/data/member_variables_to_be_exported.hpp
Modified: pyplusplus_dev/docs/history/history.rest
===================================================================
--- pyplusplus_dev/docs/history/history.rest 2009-09-19 18:57:48 UTC (rev 1757)
+++ pyplusplus_dev/docs/history/history.rest 2009-09-19 18:59:58 UTC (rev 1758)
@@ -24,6 +24,7 @@
* Bernd Fritzke
* Andrei Vermel
* Carsten( spom.spom )
+* Pertti Kellomäki
-----------
SVN Version
@@ -50,6 +51,8 @@
6. Support for `std::hash_map<...>` and `std::hash_set<...>` containers was added.
+7. The bug related to transformed virtual function was fixed. Many thanks to Pertti Kellomäki.
+
-----------
Version 1.0
-----------
Modified: pyplusplus_dev/unittests/data/member_variables_to_be_exported.cpp
===================================================================
--- pyplusplus_dev/unittests/data/member_variables_to_be_exported.cpp 2009-09-19 18:57:48 UTC (rev 1757)
+++ pyplusplus_dev/unittests/data/member_variables_to_be_exported.cpp 2009-09-19 18:59:58 UTC (rev 1758)
@@ -7,6 +7,8 @@
namespace member_variables{
+const array_t::variable_t array_t::vars[] = { array_t::variable_t(), array_t::variable_t(), array_t::variable_t() };
+
int point::instance_count = 0;
const point::color point::default_color = point::red;
Modified: pyplusplus_dev/unittests/data/member_variables_to_be_exported.hpp
===================================================================
--- pyplusplus_dev/unittests/data/member_variables_to_be_exported.hpp 2009-09-19 18:57:48 UTC (rev 1757)
+++ pyplusplus_dev/unittests/data/member_variables_to_be_exported.hpp 2009-09-19 18:59:58 UTC (rev 1758)
@@ -49,7 +49,8 @@
unsigned int get_b(const bit_fields_t& inst);
struct array_t{
- array_t(){
+ array_t()
+ {
for( int i = 0; i < 10; ++i ){
ivars[i] = -i;
}
@@ -64,7 +65,7 @@
return ivars[index];
}
- const variable_t vars[3];
+ static const variable_t vars[3];
int ivars[10];
int ivars2[10];
};
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|