Add header.
[kai/samba.git] / source4 / lib / appweb / mpr / var.h
index ef9217b9cf41fea8cc1ff4ac5ffc6f766277e967..98313c0476e80ad19e672247b74bb8771bb6ebd1 100644 (file)
@@ -296,10 +296,10 @@ typedef struct MprVar {
         *      Union of primitive types. When debugging on Linux, don't use unions 
         *      as the gdb debugger can't display them.
         */
-#if !BLD_DEBUG && !LINUX && !VXWORKS
+#if 0 && !BLD_DEBUG && !LINUX && !VXWORKS
        union {
 #endif
-               int                             boolean;                                /* Use int for speed */
+               bool                    boolean;
 #if BLD_FEATURE_FLOATING_POINT
                double                  floating;
 #endif
@@ -321,7 +321,7 @@ typedef struct MprVar {
                } cFunctionWithStrings;
                MprStr                  string;                                 /* Allocated string */
                void                    *ptr;                                   /* Opaque pointer */
-#if !BLD_DEBUG && !LINUX && !VXWORKS
+#if 0 && !BLD_DEBUG && !LINUX && !VXWORKS
        };
 #endif
 } MprVar;