Skip to content

Commit 6737a06

Browse files
ujjwaltwitxcertik
authored andcommitted
Removed unused parameters
1 parent 6f93c43 commit 6737a06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lpython/semantics/python_ast_to_asr.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4051,7 +4051,7 @@ class SymbolTableVisitor : public CommonVisitor<SymbolTableVisitor> {
40514051
// Implement visit_Global for Symbol Table visitor.
40524052
void visit_Global(const AST::Global_t &/*x*/) {}
40534053

4054-
void visit_AsyncFunctionDef(const AST::AsyncFunctionDef_t &x){
4054+
void visit_AsyncFunctionDef(const AST::AsyncFunctionDef_t &/*x*/){
40554055
try
40564056
{
40574057
// to be implemented
@@ -4834,7 +4834,7 @@ class BodyVisitor : public CommonVisitor<BodyVisitor> {
48344834
tmp = nullptr;
48354835
}
48364836

4837-
void visit_AsyncFunctionDef(const AST::AsyncFunctionDef_t &x) {
4837+
void visit_AsyncFunctionDef(const AST::AsyncFunctionDef_t &/*x*/) {
48384838
try
48394839
{
48404840
// BodyVisitor for visit_AsyncFunctionDef to be implemented

0 commit comments

Comments
 (0)