From: Automatic source maintenance Date: Fri, 26 Aug 2011 00:12:19 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: take08~35^2~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ea0c6ab4af005ac5da20325e4a4390edd57156e;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/format/Tokens.cc b/src/format/Tokens.cc index 5e39d9c067..5b21b686e4 100644 --- a/src/format/Tokens.cc +++ b/src/format/Tokens.cc @@ -32,7 +32,8 @@ const char *Format::log_tags[] = { // Due to token overlaps between 1 and 2 letter tokens (Bug 3310) // We split the token table into sets determined by the token length -namespace Format { +namespace Format +{ /// 1-char tokens. static struct TokenTableEntry TokenTable1C[] = { @@ -353,7 +354,7 @@ Format::Token::parse(char *def, Quoting *quoting) cur = scanForToken(TokenTableMisc, cur); // scan for 2-char tokens if (type == LFT_NONE) { - debugs(46, 5, HERE << "scan for possible 2C token"); + debugs(46, 5, HERE << "scan for possible 2C token"); cur = scanForToken(TokenTable2C, cur); } // finally scan for 1-char tokens.