aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2018-10-10 01:06:39 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2018-10-10 01:06:39 +0800
commit9e032bff43b8d2a49e4e2ecae1e98e6823fa5288 (patch)
treeb299c05935786ed880edc8a6c989e18767b3de8a /test
parente732c49c2f6e1096cb9c20df7ec6c4db77f3a710 (diff)
downloaddexon-solidity-9e032bff43b8d2a49e4e2ecae1e98e6823fa5288.tar
dexon-solidity-9e032bff43b8d2a49e4e2ecae1e98e6823fa5288.tar.gz
dexon-solidity-9e032bff43b8d2a49e4e2ecae1e98e6823fa5288.tar.bz2
dexon-solidity-9e032bff43b8d2a49e4e2ecae1e98e6823fa5288.tar.lz
dexon-solidity-9e032bff43b8d2a49e4e2ecae1e98e6823fa5288.tar.xz
dexon-solidity-9e032bff43b8d2a49e4e2ecae1e98e6823fa5288.tar.zst
dexon-solidity-9e032bff43b8d2a49e4e2ecae1e98e6823fa5288.zip
Use nullptr instead of NULL where appropriate
Diffstat (limited to 'test')
-rw-r--r--test/libsolidity/LibSolc.cpp4
-rw-r--r--test/tools/fuzzer.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/test/libsolidity/LibSolc.cpp b/test/libsolidity/LibSolc.cpp
index 61e5ebba..94fed7e8 100644
--- a/test/libsolidity/LibSolc.cpp
+++ b/test/libsolidity/LibSolc.cpp
@@ -52,7 +52,7 @@ Json::Value compileMulti(string const& _input, bool _callback)
{
string output(
_callback ?
- compileJSONCallback(_input.c_str(), dev::test::Options::get().optimize, NULL) :
+ compileJSONCallback(_input.c_str(), dev::test::Options::get().optimize, nullptr) :
compileJSONMulti(_input.c_str(), dev::test::Options::get().optimize)
);
Json::Value ret;
@@ -62,7 +62,7 @@ Json::Value compileMulti(string const& _input, bool _callback)
Json::Value compile(string const& _input)
{
- string output(compileStandard(_input.c_str(), NULL));
+ string output(compileStandard(_input.c_str(), nullptr));
Json::Value ret;
BOOST_REQUIRE(jsonParseStrict(output, ret));
return ret;
diff --git a/test/tools/fuzzer.cpp b/test/tools/fuzzer.cpp
index ce4b721f..f7b42b25 100644
--- a/test/tools/fuzzer.cpp
+++ b/test/tools/fuzzer.cpp
@@ -86,7 +86,7 @@ void testConstantOptimizer()
void runCompiler(string input)
{
- string outputString(compileStandard(input.c_str(), NULL));
+ string outputString(compileStandard(input.c_str(), nullptr));
Json::Value output;
if (!jsonParseStrict(outputString, output))
{