From 9b64cac7c8db2dce6759f551d3bab4192563d8c0 Mon Sep 17 00:00:00 2001 From: "humper@google.com" Date: Tue, 15 Jan 2013 03:03:38 +0000 Subject: [PATCH] fix warning on linux 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/utils/SkRTConf.h b/include/utils/SkRTConf.h index 89b88125b6..62ca4b9ec4 100644 --- a/include/utils/SkRTConf.h +++ b/include/utils/SkRTConf.h @@ -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