aboutsummaryrefslogtreecommitdiffstats
path: root/liblll/CompilerState.cpp
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-10-02 20:17:52 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-10-03 04:19:36 +0800
commit26f3ea8cf7fba8d8222ab1889cfbf89046371d10 (patch)
treec19c2cc8cf9db681ba84f4789fa401d43668b848 /liblll/CompilerState.cpp
parent91b20b4bd247ca5163fc562d54ae639eda2532ef (diff)
downloaddexon-solidity-26f3ea8cf7fba8d8222ab1889cfbf89046371d10.tar.gz
dexon-solidity-26f3ea8cf7fba8d8222ab1889cfbf89046371d10.tar.zst
dexon-solidity-26f3ea8cf7fba8d8222ab1889cfbf89046371d10.zip
LLL: change (include) to use a callback
Diffstat (limited to 'liblll/CompilerState.cpp')
-rw-r--r--liblll/CompilerState.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/liblll/CompilerState.cpp b/liblll/CompilerState.cpp
index d53dec7e..c0e344b2 100644
--- a/liblll/CompilerState.cpp
+++ b/liblll/CompilerState.cpp
@@ -82,5 +82,5 @@ void CompilerState::populateStandard()
"(def 'shl (val shift) (mul val (exp 2 shift)))"
"(def 'shr (val shift) (div val (exp 2 shift)))"
"}";
- CodeFragment::compile(s, *this);
+ CodeFragment::compile(s, *this, CodeFragment::ReadCallback());
}