fix warning on linux
authorhumper@google.com <humper@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 15 Jan 2013 03:03:38 +0000 (03:03 +0000)
committerhumper@google.com <humper@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>
Tue, 15 Jan 2013 03:03:38 +0000 (03:03 +0000)
BUG=

Review URL: https://codereview.appspot.com/7101058

git-svn-id: http://skia.googlecode.com/svn/trunk@7174 2bbb7eff-a529-9590-31e7-b0007b416f81

include/utils/SkRTConf.h

index 89b8812..62ca4b9 100644 (file)
@@ -44,10 +44,10 @@ public:
     void set(const T& value) { fValue = value; }
 protected:
     void doPrint(char *s) const;
-
+    
+    T        fValue; 
+    T        fDefault;
     SkString fDescription;
-    T           fDefault;
-    T           fValue;
 };
 
 #ifdef SK_DEVELOPER