commit | f1c46f813fed48f18c4f846d597df5e87a91b5d0 | [log] [tgz] |
---|---|---|
author | William A. Kennington III <wak@google.com> | Tue Nov 05 17:28:58 2019 -0800 |
committer | William A. Kennington III <wak@google.com> | Tue Nov 05 17:29:05 2019 -0800 |
tree | 12c1b9fc7c54630735f9ee63e07bf04be1232c0b | |
parent | 4ef36e7904aa354256ab5818c543df0a9c61f90f [diff] |
handle: Cleanup noexcept guarantees Some of our noexcept guarantees were just wrong, and we weren't providing it for the move constructor when possible. Change-Id: I48452a4f07655d7cc479ca8ab8d744a59c119459 Signed-off-by: William A. Kennington III <wak@google.com>
stdplus is a c++ project containing commonly used classes and functions for the Linux platform. Note the goals of this project are to implement only the minimum set of features needed by the OpenBMC project and other users. You may find the included set of functions currently quite sparse.
This project provides the following primitives:
Test cases require google{test,mock}, valgrind, and lcov.
For a standard release build, you want something like:
./bootstrap.sh ./configure --disable-examples --disable-tests make make install
For a test / debug build, a typical configuration is
./bootstrap.sh ./configure --enable-tests --enable-coverage --enable-valgrind make make check make check-valgrind make check-code-coverage