diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-10-02 20:17:52 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-10-03 04:19:36 +0800 |
commit | 26f3ea8cf7fba8d8222ab1889cfbf89046371d10 (patch) | |
tree | c19c2cc8cf9db681ba84f4789fa401d43668b848 /liblll/CompilerState.cpp | |
parent | 91b20b4bd247ca5163fc562d54ae639eda2532ef (diff) | |
download | dexon-solidity-26f3ea8cf7fba8d8222ab1889cfbf89046371d10.tar dexon-solidity-26f3ea8cf7fba8d8222ab1889cfbf89046371d10.tar.gz dexon-solidity-26f3ea8cf7fba8d8222ab1889cfbf89046371d10.tar.bz2 dexon-solidity-26f3ea8cf7fba8d8222ab1889cfbf89046371d10.tar.lz dexon-solidity-26f3ea8cf7fba8d8222ab1889cfbf89046371d10.tar.xz 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.cpp | 2 |
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()); } |