Start StringUtils, update build, add CLion config for code style.

This commit is contained in:
2023-10-14 17:56:26 -07:00
parent b28199553f
commit dd696e2c1f
19 changed files with 500 additions and 16 deletions

View File

@@ -13,7 +13,7 @@
namespace klib {
void
TestAssert(bool condition, std::string message = "Assertion failed.")
TestAssert(bool condition, std::string message)
{
#if defined(NDEBUG) || defined(KLIB_NO_ASSERT)
if (!condition) {