I was building this project with ```bash $ cmake . $ make install ``` Build was failing with ``` error: 'runtime_error' is not a member of 'std' ``` I've added ```cpp #include <stdexcept> ``` into all `.h` files in `src/` and build succeeded
I was building this project with
$ cmake . $ make installBuild was failing with
I've added
into all
.hfiles insrc/and build succeeded