From: hno <> Date: Wed, 16 Jul 2003 14:24:45 +0000 (+0000) Subject: Remove bitfield definition of quote. Having it as a bitfield only marginally X-Git-Tag: SQUID_3_0_PRE1~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d394051a59ccf68195ba444e22f3a21cd1e6ceee;p=thirdparty%2Fsquid.git Remove bitfield definition of quote. Having it as a bitfield only marginally saves memory, but probably both confuses compilers and make more inefficient code. Robert reported issues with using GCC-2.95 related to this. --- diff --git a/src/access_log.cc b/src/access_log.cc index 039a031825..0bfcf6b0b1 100644 --- a/src/access_log.cc +++ b/src/access_log.cc @@ -1,6 +1,6 @@ /* - * $Id: access_log.cc,v 1.88 2003/07/15 20:45:45 wessels Exp $ + * $Id: access_log.cc,v 1.89 2003/07/16 08:24:45 hno Exp $ * * DEBUG: section 46 Access Log * AUTHOR: Duane Wessels @@ -403,8 +403,7 @@ struct _logformat_token unsigned char width; unsigned char precision; -enum log_quote quote: - 3; + enum log_quote quote; unsigned int left: 1;