summaryrefslogtreecommitdiff
path: root/autodoc/source/ary/cpp/c_define.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'autodoc/source/ary/cpp/c_define.cxx')
-rw-r--r--autodoc/source/ary/cpp/c_define.cxx32
1 files changed, 0 insertions, 32 deletions
diff --git a/autodoc/source/ary/cpp/c_define.cxx b/autodoc/source/ary/cpp/c_define.cxx
index e631029f2fc6..fdcaf9645a96 100644
--- a/autodoc/source/ary/cpp/c_define.cxx
+++ b/autodoc/source/ary/cpp/c_define.cxx
@@ -75,37 +75,5 @@ Define::inq_DefinitionText() const
return aDefinition;
}
-void
-Define::GetText( StreamStr & o_rText ) const
-{
- if ( aDefinition.begin() == aDefinition.end() )
- return;
-
-
- bool bSwitch_Stringify = false;
- bool bSwitch_Concatenate = false;
-
- for ( StringVector::const_iterator it = aDefinition.begin();
- it != aDefinition.end();
- ++it )
- {
- if ( HandleOperatorsBeforeTextItem( o_rText,
- bSwitch_Stringify,
- bSwitch_Concatenate,
- *it ) )
- {
- continue;
- }
-
- o_rText << (*it);
-
- Do_bStringify_end(o_rText, bSwitch_Stringify);
- o_rText << " ";
- }
- o_rText.seekp(-1, csv::cur);
-}
-
-
-
} // namespace cpp
} // namespace ary