author | Tom Henderson <tomh@tomh.org> |
Fri, 12 Sep 2014 18:19:47 -0700 | |
changeset 10942 | 2011df8ec4f6 |
parent 10941 | b8fb2bd84f08 |
child 10943 | e329871a431f |
--- a/src/core/test/config-test-suite.cc Fri Sep 12 17:49:06 2014 -0700 +++ b/src/core/test/config-test-suite.cc Fri Sep 12 18:19:47 2014 -0700 @@ -162,10 +162,11 @@ { public: static TypeId GetTypeId (void); - BaseConfigObject (void) {} + BaseConfigObject (void) : m_x(15) {} virtual ~BaseConfigObject (void) {} private: int8_t m_x; + void Increment (void) { m_x++; } // silence unused variable warning }; TypeId