Fix build warning

Symptom:
```
src/aeso_aci.erl:18: Warning: record namespace is unused
```
This commit is contained in:
Luca Favatella 2019-03-29 15:25:19 +00:00
parent 37dfbf78ac
commit d89fd134b5

View File

@ -15,7 +15,7 @@
%% the code easier but don't seem to exist elsewhere. %% the code easier but don't seem to exist elsewhere.
-record(contract, {ann,con,decls}). -record(contract, {ann,con,decls}).
-record(namespace, {ann,con,decls}). %% -record(namespace, {ann,con,decls}).
-record(letfun, {ann,id,args,type,body}). -record(letfun, {ann,id,args,type,body}).
-record(type_def, {ann,id,vars,typedef}). -record(type_def, {ann,id,vars,typedef}).