]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Remove bitfield definition of quote. Having it as a bitfield only marginally
authorhno <>
Wed, 16 Jul 2003 14:24:45 +0000 (14:24 +0000)
committerhno <>
Wed, 16 Jul 2003 14:24:45 +0000 (14:24 +0000)
saves memory, but probably both confuses compilers and make more inefficient
code. Robert reported issues with using GCC-2.95 related to this.

src/access_log.cc

index 039a031825866dce460178354b28c63a7d2d404c..0bfcf6b0b161dbc04313e7a8bc5580faedac6a28 100644 (file)
@@ -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;