aboutsummaryrefslogtreecommitdiffstats
path: root/solc
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
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')
-rw-r--r--solc/CommandLineInterface.cpp6
-rw-r--r--solc/CommandLineInterface.h2
2 files changed, 4 insertions, 4 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();
diff --git a/solc/CommandLineInterface.h b/solc/CommandLineInterface.h
index 3428532a..ebf52625 100644
--- a/solc/CommandLineInterface.h
+++ b/solc/CommandLineInterface.h
@@ -68,7 +68,7 @@ private:
void handleSignatureHashes(std::string const& _contract);
void handleOnChainMetadata(std::string const& _contract);
void handleABI(std::string const& _contract);
- void handleMeta(DocumentationType _type, std::string const& _contract);
+ void handleNatspec(DocumentationType _type, std::string const& _contract);
void handleGasEstimation(std::string const& _contract);
void handleFormal();