summaryrefslogtreecommitdiff
path: root/autodoc/source/inc/tools/tkpchars.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'autodoc/source/inc/tools/tkpchars.hxx')
-rw-r--r--autodoc/source/inc/tools/tkpchars.hxx26
1 files changed, 0 insertions, 26 deletions
diff --git a/autodoc/source/inc/tools/tkpchars.hxx b/autodoc/source/inc/tools/tkpchars.hxx
index c5b952fb0f2f..e60769e063c4 100644
--- a/autodoc/source/inc/tools/tkpchars.hxx
+++ b/autodoc/source/inc/tools/tkpchars.hxx
@@ -96,32 +96,8 @@ class CharacterSource
bool IsFinished() const;
private:
- struct S_SourceState
- {
- DYN char * dpSource;
- intt nSourceSize;
-
- intt nCurPos;
- intt nLastCut;
- intt nLastTokenStart;
- char cCharAtLastCut;
-
- S_SourceState(
- DYN char * dpSource,
- intt nSourceSize,
- intt nCurPos,
- intt nLastCut,
- intt nLastTokenStart,
- char cCharAtLastCut );
- };
-
void BeginSource();
intt CurPos() const;
- char MoveOn_OverStack();
-
- // DATA
- std::stack< S_SourceState >
- aSourcesStack;
DYN char * dpSource;
intt nSourceSize;
@@ -142,8 +118,6 @@ if (DEBUG_ShowText())
}
if ( nCurPos < nSourceSize-1 )
return dpSource[++nCurPos];
- else if ( aSourcesStack.size() > 0 )
- return MoveOn_OverStack();
else
return dpSource[nCurPos = nSourceSize];
}