├── .drone.jsonnet ├── .drone ├── drone.bat └── drone.sh ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .travis.yml ├── CMakeLists.txt ├── README.md ├── appveyor.yml ├── doc ├── .gitignore ├── Jamfile ├── assert.adoc ├── changes.adoc ├── current_function.adoc ├── index-docinfo-footer.html ├── index.adoc └── source_location.adoc ├── extra └── boost_assert.natvis ├── include └── boost │ ├── assert.hpp │ ├── assert │ └── source_location.hpp │ └── current_function.hpp ├── index.html ├── meta └── libraries.json └── test ├── CMakeLists.txt ├── Jamfile.v2 ├── assert_is_void_test.cpp ├── assert_msg_test2.cpp ├── assert_test.cpp ├── assert_test2.cpp ├── check_cmake_version.cpp ├── cmake_install_test ├── CMakeLists.txt └── main.cpp ├── cmake_subdir_test ├── CMakeLists.txt └── main.cpp ├── current_function_test.cpp ├── current_function_test2.cpp ├── exp ├── assert_exp_test.cpp ├── assert_msg_exp_test.cpp ├── verify_exp_test.cpp └── verify_msg_exp_test.cpp ├── quick.cpp ├── source_location_test.cpp ├── source_location_test2.cpp ├── source_location_test3.cpp ├── source_location_test4.cpp ├── source_location_test5.cpp ├── source_location_test6.cpp └── verify_test.cpp /.drone.jsonnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/.drone.jsonnet -------------------------------------------------------------------------------- /.drone/drone.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/.drone/drone.bat -------------------------------------------------------------------------------- /.drone/drone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/.drone/drone.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/appveyor.yml -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | /html/ 2 | /pdf/ 3 | -------------------------------------------------------------------------------- /doc/Jamfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/doc/Jamfile -------------------------------------------------------------------------------- /doc/assert.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/doc/assert.adoc -------------------------------------------------------------------------------- /doc/changes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/doc/changes.adoc -------------------------------------------------------------------------------- /doc/current_function.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/doc/current_function.adoc -------------------------------------------------------------------------------- /doc/index-docinfo-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/doc/index-docinfo-footer.html -------------------------------------------------------------------------------- /doc/index.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/doc/index.adoc -------------------------------------------------------------------------------- /doc/source_location.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/doc/source_location.adoc -------------------------------------------------------------------------------- /extra/boost_assert.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/extra/boost_assert.natvis -------------------------------------------------------------------------------- /include/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/include/boost/assert.hpp -------------------------------------------------------------------------------- /include/boost/assert/source_location.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/include/boost/assert/source_location.hpp -------------------------------------------------------------------------------- /include/boost/current_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/include/boost/current_function.hpp -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/index.html -------------------------------------------------------------------------------- /meta/libraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/meta/libraries.json -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/Jamfile.v2 -------------------------------------------------------------------------------- /test/assert_is_void_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/assert_is_void_test.cpp -------------------------------------------------------------------------------- /test/assert_msg_test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/assert_msg_test2.cpp -------------------------------------------------------------------------------- /test/assert_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/assert_test.cpp -------------------------------------------------------------------------------- /test/assert_test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/assert_test2.cpp -------------------------------------------------------------------------------- /test/check_cmake_version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/check_cmake_version.cpp -------------------------------------------------------------------------------- /test/cmake_install_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/cmake_install_test/CMakeLists.txt -------------------------------------------------------------------------------- /test/cmake_install_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/cmake_install_test/main.cpp -------------------------------------------------------------------------------- /test/cmake_subdir_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/cmake_subdir_test/CMakeLists.txt -------------------------------------------------------------------------------- /test/cmake_subdir_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/cmake_subdir_test/main.cpp -------------------------------------------------------------------------------- /test/current_function_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/current_function_test.cpp -------------------------------------------------------------------------------- /test/current_function_test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/current_function_test2.cpp -------------------------------------------------------------------------------- /test/exp/assert_exp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/exp/assert_exp_test.cpp -------------------------------------------------------------------------------- /test/exp/assert_msg_exp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/exp/assert_msg_exp_test.cpp -------------------------------------------------------------------------------- /test/exp/verify_exp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/exp/verify_exp_test.cpp -------------------------------------------------------------------------------- /test/exp/verify_msg_exp_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/exp/verify_msg_exp_test.cpp -------------------------------------------------------------------------------- /test/quick.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/quick.cpp -------------------------------------------------------------------------------- /test/source_location_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/source_location_test.cpp -------------------------------------------------------------------------------- /test/source_location_test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/source_location_test2.cpp -------------------------------------------------------------------------------- /test/source_location_test3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/source_location_test3.cpp -------------------------------------------------------------------------------- /test/source_location_test4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/source_location_test4.cpp -------------------------------------------------------------------------------- /test/source_location_test5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/source_location_test5.cpp -------------------------------------------------------------------------------- /test/source_location_test6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/source_location_test6.cpp -------------------------------------------------------------------------------- /test/verify_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/assert/HEAD/test/verify_test.cpp --------------------------------------------------------------------------------