diff options
author | Jan Jezabek <jezabek@poczta.onet.pl> | 2009-06-22 18:04:37 +0000 |
---|---|---|
committer | Jan Jezabek <jezabek@poczta.onet.pl> | 2009-06-22 18:04:37 +0000 |
commit | a8859566b4c881ae3a794d4784c56476e5d49cfe (patch) | |
tree | 579b389c81a027165bffb987778a600a30119771 /Source/Modules/com.cxx | |
parent | cbf03ff6a3e453465271b3774693ae03aa14783f (diff) | |
download | swig-a8859566b4c881ae3a794d4784c56476e5d49cfe.tar.gz |
Reorder initialization list to match the initialization order (and silence some GCC warnings).
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-jezabek@11298 626c5289-ae23-0410-ae9c-e8d60b6d4f22
Diffstat (limited to 'Source/Modules/com.cxx')
-rw-r--r-- | Source/Modules/com.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Modules/com.cxx b/Source/Modules/com.cxx index 74d91b0b3..8beb50dac 100644 --- a/Source/Modules/com.cxx +++ b/Source/Modules/com.cxx @@ -231,16 +231,16 @@ public: * ----------------------------------------------------------------------------- */ COM():empty_string(NewString("")), - hresult_flag(true), proxy_flag(true), + dllexports_flag(true), deffile_flag(true), rcfile_flag(true), - dllexports_flag(true), + hresult_flag(true), enum_constant_flag(false), + clsid_list(NewString("")), proxy_class_vtable_code(NewString("")), proxy_static_class_vtable_code(NewString("")), proxy_class_vtable_defs(NewString("")), - clsid_list(NewString("")), namespce(NULL) { /* Use NIL GUID by default */ memset(&master_guid, 0, sizeof(GUID)); |