--- parser3/src/classes/table.C 2020/11/10 22:42:25 1.350 +++ parser3/src/classes/table.C 2020/12/14 20:58:15 1.352 @@ -5,6 +5,16 @@ Author: Alexandr Petrosian (http://paf.design.ru) */ +#include "pa_config_includes.h" + +#define NO_STRINGSTREAM + +#if (!defined(NO_STRINGSTREAM) && !defined(FREEBSD4) && !defined(PA_DEBUG_DISABLE_GC)) +#include +#include "../lib/gc/include/gc_allocator.h" +#define USE_STRINGSTREAM +#endif + #include "classes.h" #include "pa_vmethod_frame.h" @@ -17,12 +27,7 @@ #include "pa_vbool.h" #include "pa_array.h" -#if (!defined(NO_STRINGSTREAM) && !defined(FREEBSD4) && !defined(PA_DEBUG_DISABLE_GC)) -#include -#define USE_STRINGSTREAM -#endif - -volatile const char * IDENT_TABLE_C="$Id: table.C,v 1.350 2020/11/10 22:42:25 moko Exp $"; +volatile const char * IDENT_TABLE_C="$Id: table.C,v 1.352 2020/12/14 20:58:15 moko Exp $"; // class @@ -454,7 +459,6 @@ static void _load(Request& r, MethodPara } #ifdef USE_STRINGSTREAM -#include "../lib/gc/include/gc_allocator.h" typedef std::basic_stringstream, gc_allocator > pa_stringstream; typedef std::basic_string, gc_allocator > pa_string;