diff options
author | chriseth <chris@ethereum.org> | 2017-04-22 07:12:38 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-22 07:12:38 +0800 |
commit | c76e0a5872ddd43e42d56e42b37cc95cf773b42d (patch) | |
tree | b30c8d6f2fdd4c102d6b02c77832ffe826d77e0e | |
parent | 8de02c777856daffc2d48cc68a15b6b6f16ce134 (diff) | |
download | dexon-solidity-c76e0a5872ddd43e42d56e42b37cc95cf773b42d.tar.gz dexon-solidity-c76e0a5872ddd43e42d56e42b37cc95cf773b42d.tar.zst dexon-solidity-c76e0a5872ddd43e42d56e42b37cc95cf773b42d.zip |
Changed const reference to value.
-rw-r--r-- | libsolidity/interface/StandardCompiler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/interface/StandardCompiler.h b/libsolidity/interface/StandardCompiler.h index 0182027d..0b714834 100644 --- a/libsolidity/interface/StandardCompiler.h +++ b/libsolidity/interface/StandardCompiler.h @@ -55,7 +55,7 @@ private: Json::Value compileInternal(Json::Value const& _input); CompilerStack m_compilerStack; - ReadFile::Callback const& m_readFile; + ReadFile::Callback m_readFile; }; } |