aboutsummaryrefslogtreecommitdiffstats
path: root/solc/CommandLineInterface.cpp
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-05-11 16:10:41 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-05-19 23:11:04 +0800
commitbbef2cd4a8c4dd3ad0d1e16d6070a88a5f83fcc6 (patch)
tree74c1f14007caced7df831464db15c1a923814cf0 /solc/CommandLineInterface.cpp
parentcd5d93da2aef3b9617cbf02d0d1341ce071789c2 (diff)
downloaddexon-solidity-bbef2cd4a8c4dd3ad0d1e16d6070a88a5f83fcc6.tar
dexon-solidity-bbef2cd4a8c4dd3ad0d1e16d6070a88a5f83fcc6.tar.gz
dexon-solidity-bbef2cd4a8c4dd3ad0d1e16d6070a88a5f83fcc6.tar.bz2
dexon-solidity-bbef2cd4a8c4dd3ad0d1e16d6070a88a5f83fcc6.tar.lz
dexon-solidity-bbef2cd4a8c4dd3ad0d1e16d6070a88a5f83fcc6.tar.xz
dexon-solidity-bbef2cd4a8c4dd3ad0d1e16d6070a88a5f83fcc6.tar.zst
dexon-solidity-bbef2cd4a8c4dd3ad0d1e16d6070a88a5f83fcc6.zip
Rename handleMeta to handleNatspec
Diffstat (limited to 'solc/CommandLineInterface.cpp')
-rw-r--r--solc/CommandLineInterface.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp
index cee642e0..d5a60b50 100644
--- a/solc/CommandLineInterface.cpp
+++ b/solc/CommandLineInterface.cpp
@@ -284,7 +284,7 @@ void CommandLineInterface::handleABI(string const& _contract)
cout << "Contract JSON ABI " << endl << data << endl;
}
-void CommandLineInterface::handleMeta(DocumentationType _type, string const& _contract)
+void CommandLineInterface::handleNatspec(DocumentationType _type, string const& _contract)
{
std::string argName;
std::string suffix;
@@ -1073,8 +1073,8 @@ void CommandLineInterface::outputCompilationResults()
handleSignatureHashes(contract);
handleOnChainMetadata(contract);
handleABI(contract);
- handleMeta(DocumentationType::NatspecDev, contract);
- handleMeta(DocumentationType::NatspecUser, contract);
+ handleNatspec(DocumentationType::NatspecDev, contract);
+ handleNatspec(DocumentationType::NatspecUser, contract);
} // end of contracts iteration
handleFormal();