simple_allocator

A simple, poorly-performing memory allocator
git clone https://git.bracken.jp/simple_allocator.git
Log | Files | Refs | Submodules | README | LICENSE

commit efa709532f01ebab9be91ebcf2ef99b5c68b82dd
parent 0e49a0ff1fbb7c01cbf74a3fc91e8026d962c51e
Author: Chris Bracken <chris@bracken.jp>
Date:   Mon,  9 Nov 2020 23:44:26 -0800

Use -Wall rather than -Weverything

The former works on both gcc and clang; the latter only works on clang.

Diffstat:
Msrc/CMakeLists.txt | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt @@ -1,7 +1,7 @@ add_definitions(-std=c++17) set(CXX_FLAGS - "-Weverything" + "-Wall" "-Wno-c++98-compat" "-Wno-deprecated-declarations" "-Wno-padded"