You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
std::optional is used as of 45-buzzdb.cpp. This requires C++ 17 and above. I'd recommend compilation command be g++ -std=c++17 -O3 -Wall -Werror -Wextra <module_name>.cpp (and similarly for the one to generate debug symbols)
On Apple silicon Macs, the error error: use of undeclared identifier 'assert' occurs on compilation as #include <cassert> is not there in the buzzdb.cpp file. This can be addressed under Apple Mac section if needed.