diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-09 19:44:53 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-08-09 19:44:53 +0800 |
commit | 3e2f0b589d384ff264bbbb05bb5cbe003a63f936 (patch) | |
tree | 4490b5102e3f4ef0b276344954e133461c70ebdc /solc | |
parent | d015b5818ebdf9bf86aec4f3a99aae04e5f50e7c (diff) | |
download | dexon-solidity-3e2f0b589d384ff264bbbb05bb5cbe003a63f936.tar.gz dexon-solidity-3e2f0b589d384ff264bbbb05bb5cbe003a63f936.tar.zst dexon-solidity-3e2f0b589d384ff264bbbb05bb5cbe003a63f936.zip |
Remove some global symbols
Diffstat (limited to 'solc')
-rw-r--r-- | solc/jsonCompiler.cpp | 5 | ||||
-rw-r--r-- | solc/main.cpp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/solc/jsonCompiler.cpp b/solc/jsonCompiler.cpp index de797b3c..ab928ac0 100644 --- a/solc/jsonCompiler.cpp +++ b/solc/jsonCompiler.cpp @@ -38,6 +38,9 @@ extern "C" { typedef void (*CStyleReadFileCallback)(char const* _path, char** o_contents, char** o_error); } +namespace +{ + ReadFile::Callback wrapReadCallback(CStyleReadFileCallback _readCallback = nullptr) { ReadFile::Callback readCallback; @@ -260,6 +263,8 @@ string compileStandardInternal(string const& _input, CStyleReadFileCallback _rea return compiler.compile(_input); } +} + static string s_outputBuffer; extern "C" diff --git a/solc/main.cpp b/solc/main.cpp index c61da6e9..6d559542 100644 --- a/solc/main.cpp +++ b/solc/main.cpp @@ -40,7 +40,7 @@ specified default locale if it is valid, and if not then it will modify the environment the process is running in to use a sensible default. This also means that users do not need to install language packs for their OS. */ -void setDefaultOrCLocale() +static void setDefaultOrCLocale() { #if __unix__ if (!std::setlocale(LC_ALL, "")) |