aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDaniel Gavin <danielgavin5@hotmail.com>2022-10-25 14:16:50 +0200
committerDaniel Gavin <danielgavin5@hotmail.com>2022-10-25 14:16:50 +0200
commitf920050b631ce749320db6e3f178982b0cad38dc (patch)
tree005da79d70a4bd408b8ad30ecfce38418e99c8e8 /src
parentcd086653de5ddbd79042a976f771ef00fc12d6dc (diff)
remove printf
Diffstat (limited to 'src')
-rw-r--r--src/server/analysis.odin2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/server/analysis.odin b/src/server/analysis.odin
index e6f640d..42e02cd 100644
--- a/src/server/analysis.odin
+++ b/src/server/analysis.odin
@@ -1086,7 +1086,6 @@ internal_resolve_type_expression :: proc(
}
if check_node_recursion(ast_context, node) {
- fmt.println("recursion expr")
//log.error("Recursion detected")
return {}, false
}
@@ -1529,7 +1528,6 @@ internal_resolve_type_identifier :: proc(
using ast
if check_node_recursion(ast_context, node.derived.(^ast.Ident)) {
- fmt.println("recursion ident")
//log.error("Recursion detected")
return {}, false
}