Files
Fig/src/waring.cpp
2025-12-19 20:38:40 +08:00

9 lines
273 B
C++

#include <warning.hpp>
namespace Fig
{
const std::unordered_map<std::size_t, FString> Warning::standardWarnings = {
{1, FString(u8"Identifier is too similar to a keyword or a primitive type")},
{2, FString(u8"The identifier is too abstract")}
};
};