mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-09-26 09:13:19 +00:00
1d20adc3b9
This commit updates the Ogg-related classes to use uniform brace
initialization ({}) for member variables where applicable. Brace
initialization improves clarity and prevents potential narrowing
conversions or unintended behavior caused by default constructor
ambiguity.
This change improves consistency and aligns with modern C++ best
practices, especially in C++11 and later where brace initialization is
recommended for safer initialization semantics.