0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-25 08:12:37 +01:00

ircd: Suppress clang conditional-uninitialized false positive for b64.lo.

This commit is contained in:
Jason Volk 2023-02-03 10:48:45 -08:00
parent ea40dcc56b
commit 027339456b

View file

@ -274,6 +274,9 @@ ASIO_UNIT_CPPFLAGS += -include ircd/asio.h
SPIRIT_UNIT_CPPFLAGS += -include ircd/spirit.h
endif
if CLANG
b64.lo: AM_CXXFLAGS := ${AM_CXXFLAGS} -Wno-conditional-uninitialized
endif
if OPENCL
cl.lo: AM_CPPFLAGS := @OPENCL_CPPFLAGS@ ${AM_CPPFLAGS}
endif