--- nono/lib/fixedqueue.h 2026/04/29 17:04:30 1.1.1.3 +++ nono/lib/fixedqueue.h 2026/04/29 17:04:40 1.1.1.5 @@ -1,6 +1,7 @@ // // nono -// Copyright (C) 2018 isaki@NetBSD.org +// Copyright (C) 2020 nono project +// Licensed under nono-license.txt // #pragma once @@ -91,7 +92,7 @@ class FixedQueue } private: - std::vector buf; // バッファ - uint start = 0; // 開始位置 - uint length = 0; // 現在有効な長さ + std::vector buf {}; // バッファ + uint start {}; // 開始位置 + uint length {}; // 現在有効な長さ };