diff options
author | Marc Laukien <marc@zeroc.com> | 2002-01-25 22:02:51 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-01-25 22:02:51 +0000 |
commit | 0bed64a2fa07caeb4fd63b4717f935b1fede97fe (patch) | |
tree | 169f360d9dc3c8884abc8ca62333d036832a3e93 /cpp/src/slice2docbook/Gen.cpp | |
parent | Generation of helper types for sequence & dictionary. (diff) | |
download | ice-0bed64a2fa07caeb4fd63b4717f935b1fede97fe.tar.bz2 ice-0bed64a2fa07caeb4fd63b4717f935b1fede97fe.tar.xz ice-0bed64a2fa07caeb4fd63b4717f935b1fede97fe.zip |
removed nonmutating as keyword
Diffstat (limited to 'cpp/src/slice2docbook/Gen.cpp')
-rw-r--r-- | cpp/src/slice2docbook/Gen.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cpp/src/slice2docbook/Gen.cpp b/cpp/src/slice2docbook/Gen.cpp index 56499841742..e3c77c4ce68 100644 --- a/cpp/src/slice2docbook/Gen.cpp +++ b/cpp/src/slice2docbook/Gen.cpp @@ -434,10 +434,9 @@ Slice::Gen::visitClassDefStart(const ClassDefPtr& p) O.zeroIndent(); O << nl << "<synopsis>"; printMetaData(*q); - bool nonmutating = (*q)->nonmutating(); TypePtr returnType = (*q)->returnType(); - O << (nonmutating ? "nonmutating " : "") << (returnType ? toString(returnType, p) : "<type>void</type>") - << " <function>" << (*q)->name() << "</function>("; + O << (returnType ? toString(returnType, p) : "<type>void</type>") << " <function>" << (*q)->name() + << "</function>("; O.inc(); TypeStringList inputParams = (*q)->inputParameters(); TypeStringList::const_iterator r = inputParams.begin(); |