This commit is contained in:
MihailRis
2024-01-27 03:44:44 +03:00
parent 2580b9dc2f
commit 3f3ff2a1f7
4 changed files with 48 additions and 36 deletions
+10
View File
@@ -19,6 +19,16 @@ enum class contenttype {
none, block, item
};
inline const char* contenttype_name(contenttype type) {
switch (type) {
case contenttype::none: return "none";
case contenttype::block: return "block";
case contenttype::item: return "item";
default:
return "unknown";
}
}
class namereuse_error: public std::runtime_error {
contenttype type;
public: