From 837a5156b456be9d0ed09c501b2c1179122382d3 Mon Sep 17 00:00:00 2001 From: H1MSK Date: Sun, 22 Oct 2023 23:16:04 +0800 Subject: [PATCH] Add missing semicolons (#776) --- include/etl/basic_string.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/etl/basic_string.h b/include/etl/basic_string.h index b9d8a4a1c..d50b281e1 100644 --- a/include/etl/basic_string.h +++ b/include/etl/basic_string.h @@ -703,7 +703,7 @@ namespace etl set_truncated(*other != 0); #if ETL_HAS_ERROR_ON_STRING_TRUNCATION - ETL_ASSERT(flags.test() == false, ETL_ERROR(string_truncation)) + ETL_ASSERT(flags.test() == false, ETL_ERROR(string_truncation)); #endif #endif @@ -724,7 +724,7 @@ namespace etl set_truncated(length_ > CAPACITY); #if ETL_HAS_ERROR_ON_STRING_TRUNCATION - ETL_ASSERT(flags.test() == false, ETL_ERROR(string_truncation)) + ETL_ASSERT(flags.test() == false, ETL_ERROR(string_truncation)); #endif #endif @@ -764,7 +764,7 @@ namespace etl set_truncated(first != last); #if ETL_HAS_ERROR_ON_STRING_TRUNCATION - ETL_ASSERT(flags.test() == false, ETL_ERROR(string_truncation)) + ETL_ASSERT(flags.test() == false, ETL_ERROR(string_truncation)); #endif #endif } @@ -783,7 +783,7 @@ namespace etl set_truncated(n > CAPACITY); #if ETL_HAS_ERROR_ON_STRING_TRUNCATION - ETL_ASSERT(flags.test() == false, ETL_ERROR(string_truncation)) + ETL_ASSERT(flags.test() == false, ETL_ERROR(string_truncation)); #endif #endif