Silence a warning from GCC

[SVN r12527]
This commit is contained in:
Douglas Gregor
2002-01-27 18:00:20 +00:00
parent b9cd52c6a2
commit 0483b05a98

View File

@@ -17,6 +17,7 @@ struct t
private: private:
void foo(){ i = j; } void foo(){ i = j; }
public: public:
void bar(){ j = i; } // silences warning from GCC
int i; int i;
int j; int j;
}; };