A set of utilities.
cmake is used to compile the sources.
The default compiler used is clang++-5.0.
The cmake files compile with -std=c++17.
The unit tests are implemented in googletest: be sure you have installed googletest to compile.
$ git clone https://github.com:massimo-marino/cpp-utilities.git
$ cd cpp-utilities
$ mkdir build
$ cd build
$ cmake ..
$ make
$ cd src/unitTests
$ ./unitTestsSee the source code and the unit tests for examples of use.