Browse Source

prc: Reorder ConfigDeclaration::Word fields for better packing

rdb 2 years ago
parent
commit
f4d394ecd8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      dtool/src/prc/configDeclaration.h

+ 2 - 2
dtool/src/prc/configDeclaration.h

@@ -107,10 +107,10 @@ private:
   class Word {
   public:
     std::string _str;
-    bool _bool;
-    int _int;
     int64_t _int_64;
     double _double;
+    int _int;
+    bool _bool;
     short _flags;
   };