1

remove semicolon

This commit is contained in:
2022-07-27 23:43:21 +02:00
parent ca5a560bf0
commit ac2d46d314

View File

@ -15,7 +15,7 @@ namespace bse {
T buf[N];
public:
array() = default;; // If i write default something like bse::array<int, 10> arr; is not initialized...
array() = default; // If i write default something like bse::array<int, 10> arr; is not initialized...
// Construct like this: bse::array<int, 5> {1, 2, 3, 4, 5};
array(std::initializer_list<T> list) {