Skip to content

Commit 0e5d395

Browse files
authored
Update src/lpython/semantics/python_comptime_eval.h
1 parent d5727ea commit 0e5d395

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lpython/semantics/python_comptime_eval.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ struct PythonIntrinsicProcedures {
177177
if (ASR::is_a<ASR::Integer_t>(*type)) {
178178
int64_t c = ASR::down_cast<ASR::ConstantInteger_t>(arg)->m_n;
179179
ASR::ttype_t* str_type =
180-
LFortran::ASRUtils::TYPE(ASR::make_Character_t(al,
180+
ASRUtils::TYPE(ASR::make_Character_t(al,
181181
loc, 1, 1, nullptr, nullptr, 0));
182182
if (! (c >= 0 && c <= 127) ) {
183183
throw SemanticError("The argument 'x' in chr(x) must be in the range 0 <= x <= 127.", loc);

0 commit comments

Comments
 (0)