diff --git a/src/Examples/CMakeLists.txt b/src/Examples/CMakeLists.txt index b8e7c574a5ef525d47c68180b252355eeea73f3e..f1583634404f65e3e01020b019741842b49dfb43 100644 --- a/src/Examples/CMakeLists.txt +++ b/src/Examples/CMakeLists.txt @@ -24,5 +24,11 @@ target_link_libraries( FileExample tnl ) ADD_EXECUTABLE( StringExample StringExample.cpp ) target_link_libraries( StringExample tnl ) +ADD_EXECUTABLE( StringExampleGetSize StringExampleGetSize.cpp ) +target_link_libraries( StringExampleGetSize tnl ) + +ADD_EXECUTABLE( StringExampleGetAllocatedSize StringExampleGetAllocatedSize.cpp ) +target_link_libraries( StringExampleGetAllocatedSize tnl ) + ADD_EXECUTABLE( TimerExample TimerExample.cpp ) target_link_libraries( TimerExample tnl ) \ No newline at end of file diff --git a/src/TNL/Assert.h b/src/TNL/Assert.h index dabd69a9738ef651a1484ead245a41b956ce1663..d601f9c1b95dd7e85737304c05a3536ac0d0f8ae 100644 --- a/src/TNL/Assert.h +++ b/src/TNL/Assert.h @@ -103,6 +103,7 @@ * The assertion succeeds if, and only if, ___tnl__assert_condition is valid. * On success the test continues without any side effects. * On failure the test is terminated with the error message \e ___tnl__assert_command. + */ #define TNL_ASSERT( ___tnl__assert_condition, ___tnl__assert_command ) #else /* #ifdef NDEBUG */