0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-29 00:03:45 +02:00

ircd: Remove manual include and use the pch for parse.cc

This commit is contained in:
Jason Volk 2019-05-06 10:43:33 -07:00
parent 4fb5d38319
commit d38d4b22f6
2 changed files with 3 additions and 2 deletions

View file

@ -159,6 +159,9 @@ LOWMEM_FLAGS= --param ggc-min-expand=1
endif
endif
parse.lo: AM_CPPFLAGS := -include ircd/spirit.h ${AM_CPPFLAGS}
parse.lo: CXXFLAGS += ${LOWMEM_FLAGS}
json.lo: AM_CPPFLAGS := -include ircd/spirit.h ${AM_CPPFLAGS}
json.lo: CXXFLAGS += ${LOWMEM_FLAGS}

View file

@ -23,8 +23,6 @@
* USA
*/
#include <ircd/spirit.h>
decltype(ircd::spirit::rulebuf) thread_local
ircd::spirit::rulebuf;