nlohmann / fifo_map

a FIFO-ordered associative container for C++
MIT License
179 stars 77 forks source link

Fix CXX_FLAGS: "-stdlib=libc++" is clang-specific #12

Closed cbaecker closed 3 years ago

cbaecker commented 3 years ago

Resolves #11

Not sure why that flag was specified at all. This change fixes build using gcc, without changing behaviour using clang.

Tested with clang10 + gcc9.3

nlohmann commented 3 years ago

Thanks!