better error message

This commit is contained in:
Akash Mozumdar 2019-06-29 14:57:39 +05:30
parent 447400980e
commit ce33ca5732

View File

@ -11,11 +11,11 @@ struct InfoForExtension
struct SentenceInfo
{
const InfoForExtension* infoArray;
// nullptr marks end of info array
int64_t operator[](std::string propertyName)
{
for (auto info = infoArray; info->name; ++info) if (propertyName == info->name) return info->value;
throw;
for (auto info = infoArray; info->name; ++info) // nullptr name marks end of info array
if (propertyName == info->name) return info->value;
return *(int*)0xcccc = 0; // gives better error message than alternatives
}
inline static InfoForExtension DUMMY[2] = { { "text number", 1 } };