]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - radiant/filetypes.cpp
Remove -Wno-reorder
[xonotic/netradiant.git] / radiant / filetypes.cpp
index 87cb205c15b4afd6fc7519b3458b08d380f717d7..6a08cecd8c63a3afe63ff54a12cb7c869705435e 100644 (file)
@@ -35,7 +35,7 @@ class RadiantFileTypeRegistry : public IFileTypeRegistry
 struct filetype_copy_t
 {
        filetype_copy_t( const char* moduleName, const filetype_t other )
-               : m_moduleName( moduleName ), m_name( other.name ), m_pattern( other.pattern ), m_can_load( other.can_load ), m_can_import( other.can_import ), m_can_save( other.can_save ){
+               : m_can_load( other.can_load ), m_can_import( other.can_import ), m_can_save( other.can_save ), m_moduleName( moduleName ), m_name( other.name ), m_pattern( other.pattern ) {
        }
        const char* getModuleName() const {
                return m_moduleName.c_str();