GCC 10 fix for sqlite3 (nw)

This commit is contained in:
arbee 2020-05-02 15:41:02 -04:00
parent 335693151e
commit 47a8f8c2bb

View File

@ -1101,6 +1101,11 @@ end
"-Wno-class-memaccess", -- many instances in ImGui and BGFX
}
end
if (version >= 100000) then
buildoptions {
"-Wno-return-local-addr", -- sqlite3.c in GCC 10
}
end
end
end