aboutsummaryrefslogtreecommitdiffstats
path: root/solidityNatspecJSON.cpp
diff options
context:
space:
mode:
authorLefteris Karapetsas <lefteris@refu.co>2014-12-05 19:41:32 +0800
committerLefteris Karapetsas <lefteris@refu.co>2014-12-05 19:41:32 +0800
commit80ad71576459f0401d838aa97b62bc40607dbafb (patch)
tree34e8ba7429e0ecaf7df96ce6ef9938ef73ddd5c4 /solidityNatspecJSON.cpp
parent0c24dc096eac2720288967eb1c7b3c0e078d2bf1 (diff)
downloaddexon-solidity-80ad71576459f0401d838aa97b62bc40607dbafb.tar.gz
dexon-solidity-80ad71576459f0401d838aa97b62bc40607dbafb.tar.zst
dexon-solidity-80ad71576459f0401d838aa97b62bc40607dbafb.zip
Stack compiler now correctly returns a string and not a pointer
Diffstat (limited to 'solidityNatspecJSON.cpp')
-rw-r--r--solidityNatspecJSON.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/solidityNatspecJSON.cpp b/solidityNatspecJSON.cpp
index 9596f2b8..2ccedf7a 100644
--- a/solidityNatspecJSON.cpp
+++ b/solidityNatspecJSON.cpp
@@ -55,9 +55,9 @@ public:
}
if (_userDocumentation)
- generatedDocumentationString = *m_compilerStack.getJsonDocumentation(NATSPEC_USER);
+ generatedDocumentationString = m_compilerStack.getJsonDocumentation(NATSPEC_USER);
else
- generatedDocumentationString = *m_compilerStack.getJsonDocumentation(NATSPEC_DEV);
+ generatedDocumentationString = m_compilerStack.getJsonDocumentation(NATSPEC_DEV);
Json::Value generatedDocumentation;
m_reader.parse(generatedDocumentationString, generatedDocumentation);
Json::Value expectedDocumentation;