diff --git a/compiler.h b/compiler.h index ec5e04a..c44e05b 100644 --- a/compiler.h +++ b/compiler.h @@ -16,7 +16,7 @@ struct CompilerContext { template std::optional FromString(I first, I last) const { - if (std::distance(first, last) == 0 || std::distance(first, last) > 17) return {}; + if (std::distance(first, last) == 0 || std::distance(first, last) > 16) return {}; return std::string(first, last); }