From ac2d46d31401c51690078b5037f77aa267d223d3 Mon Sep 17 00:00:00 2001 From: ChUrl Date: Wed, 27 Jul 2022 23:43:21 +0200 Subject: [PATCH] remove semicolon --- c_os/user/lib/Array.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c_os/user/lib/Array.h b/c_os/user/lib/Array.h index 364ef50..5c1fe99 100644 --- a/c_os/user/lib/Array.h +++ b/c_os/user/lib/Array.h @@ -15,7 +15,7 @@ namespace bse { T buf[N]; public: - array() = default;; // If i write default something like bse::array arr; is not initialized... + array() = default; // If i write default something like bse::array arr; is not initialized... // Construct like this: bse::array {1, 2, 3, 4, 5}; array(std::initializer_list list) {