From 2a62ecbb1be0487c4df66f73072704bfd66c83f3 Mon Sep 17 00:00:00 2001 From: Tanay Manerikar Date: Tue, 16 Jul 2024 21:00:19 +0530 Subject: [PATCH] Removed white space --- src/lpython/semantics/python_ast_to_asr.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lpython/semantics/python_ast_to_asr.cpp b/src/lpython/semantics/python_ast_to_asr.cpp index 454a2c769c..f749b8c8b3 100644 --- a/src/lpython/semantics/python_ast_to_asr.cpp +++ b/src/lpython/semantics/python_ast_to_asr.cpp @@ -1324,8 +1324,6 @@ class CommonVisitor : public AST::BaseVisitor { for (size_t i = args.size(); i < st->n_members; i++) { args.push_back(al, st->m_initializers[i]); } - - ASR::ttype_t* der_type = ASRUtils::TYPE(ASRUtils::make_StructType_t_util(al, loc, stemp)); return ASR::make_StructConstructor_t(al, loc, stemp, args.p, args.size(), der_type, nullptr); } else if( ASR::is_a(*s) ) {