From: JINMEI Tatuya Date: Sat, 27 Oct 2012 05:28:51 +0000 (-0700) Subject: [2370] make MasterLexerTokenTest members protected (not public) by convention X-Git-Tag: trac2487_base~32^2^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e62b6417336ebdaeda560e47b177e617ee4551e5;p=thirdparty%2Fkea.git [2370] make MasterLexerTokenTest members protected (not public) by convention --- diff --git a/src/lib/dns/tests/master_lexer_token_unittest.cc b/src/lib/dns/tests/master_lexer_token_unittest.cc index a7a8acce90..a63b9ca52a 100644 --- a/src/lib/dns/tests/master_lexer_token_unittest.cc +++ b/src/lib/dns/tests/master_lexer_token_unittest.cc @@ -29,7 +29,7 @@ const char TEST_STRING[] = "string token"; const size_t TEST_STRING_LEN = sizeof(TEST_STRING) - 1; class MasterLexerTokenTest : public ::testing::Test { -public: +protected: MasterLexerTokenTest() : token_eof(MasterLexer::Token::END_OF_FILE), token_str(TEST_STRING, TEST_STRING_LEN),