mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-06-22 10:28:31 +00:00
9c8798b592
These cause a lot of type-safety trouble - unsupported types passed into fmt::sprintf (like CStr or enums) will be accepted at compile time, but trigger an exception at runtime. Remove them, so we'll get either an implicit conversion to a supported type, or a compile-time error. This was SVN commit r16179.