From: Amos Jeffries Date: Tue, 3 Mar 2009 13:10:23 +0000 (+1300) Subject: Grr, enum lists must not end with ,} X-Git-Tag: SQUID_3_2_0_1~1140 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ffb809be22c909fb80e24bc61c10e20c39e35c64;p=thirdparty%2Fsquid.git Grr, enum lists must not end with ,} This fixes a few more build issues on non-GCC compilers. --- diff --git a/src/AsyncEngine.h b/src/AsyncEngine.h index 38ea562dae..f0e5edb380 100644 --- a/src/AsyncEngine.h +++ b/src/AsyncEngine.h @@ -57,7 +57,7 @@ public: */ EVENT_IDLE = -1, /* some error has occured in this engine */ - EVENT_ERROR = -2, + EVENT_ERROR = -2 }; virtual ~AsyncEngine() {} diff --git a/src/cbdata.h b/src/cbdata.h index 1ae6492d54..5465196794 100644 --- a/src/cbdata.h +++ b/src/cbdata.h @@ -232,7 +232,7 @@ * are added runtime */ typedef enum { - CBDATA_UNKNOWN = 0, + CBDATA_UNKNOWN = 0 } cbdata_type; /// \ingroup CBDATAAPI