aboutsummaryrefslogtreecommitdiff
path: root/src/checker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/checker.cpp')
-rw-r--r--src/checker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/checker.cpp b/src/checker.cpp
index 8eb3a3900..7c23843cb 100644
--- a/src/checker.cpp
+++ b/src/checker.cpp
@@ -27,7 +27,7 @@ enum BuiltinProcId {
BuiltinProc_len,
BuiltinProc_cap,
- BuiltinProc_new,
+ // BuiltinProc_new,
BuiltinProc_make,
BuiltinProc_free,
@@ -75,7 +75,7 @@ gb_global BuiltinProc builtin_procs[BuiltinProc_COUNT] = {
{STR_LIT("len"), 1, false, Expr_Expr},
{STR_LIT("cap"), 1, false, Expr_Expr},
- {STR_LIT("new"), 1, false, Expr_Expr},
+ // {STR_LIT("new"), 1, false, Expr_Expr},
{STR_LIT("make"), 1, true, Expr_Expr},
{STR_LIT("free"), 1, false, Expr_Stmt},