[nostalgia/core/studio] Fix Clang build

This commit is contained in:
Gary Talent 2024-09-06 02:07:35 -05:00
parent 1a2b2b8bac
commit 36057bb010

View File

@ -89,6 +89,8 @@ struct PaletteV3 {
static constexpr auto TypeName = "net.drinkingtea.nostalgia.core.Palette.ColorInfo"; static constexpr auto TypeName = "net.drinkingtea.nostalgia.core.Palette.ColorInfo";
static constexpr auto TypeVersion = 3; static constexpr auto TypeVersion = 3;
ox::String name; ox::String name;
constexpr ColorInfo() noexcept = default;
constexpr ColorInfo(ox::StringParam pName) noexcept: name{std::move(pName)} {}
}; };
ox::Vector<ColorInfo> colorInfo; ox::Vector<ColorInfo> colorInfo;
ox::Vector<ox::Vector<Color16>> pages; ox::Vector<ox::Vector<Color16>> pages;