From c63d74092ed0bd500508be92513040c5957bfdf9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Tue, 28 Mar 2017 17:33:32 +0200 Subject: [PATCH] Removed unnecessary assertion. --- include/anthem/output/AST.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/anthem/output/AST.h b/include/anthem/output/AST.h index d7007f8..b27bf93 100644 --- a/include/anthem/output/AST.h +++ b/include/anthem/output/AST.h @@ -216,7 +216,6 @@ inline output::ColorStream &operator<<(output::ColorStream &stream, const String inline output::ColorStream &operator<<(output::ColorStream &stream, const Variable &variable) { assert(!variable.name.empty()); - assert(variable.name[0] >= 65 && variable.name[0] <= 90); if (variable.type == ast::Variable::Type::Reserved || !isReservedVariableName(variable.name.c_str())) return (stream << output::Variable(variable.name.c_str()));