lomekragow

Results 2 comments of lomekragow

> Hi @Chaojimengnan This API is outdated and doesn't support fresh tools, please try with https://github.com/cpp-sc2/cpp-sc2 Another solution is manual update of the protobuf submodule. It works, thank you!!

A lightweight RAII helper class ( Requires C++17 or higher ) ```cpp template class scope_exit { public: constexpr scope_exit() = default; constexpr scope_exit(bool turn_on) : turn_on(turn_on) { } constexpr scope_exit(const...