summaryrefslogtreecommitdiff
path: root/autodoc/source/parser/cpp/pe_expr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'autodoc/source/parser/cpp/pe_expr.cxx')
-rw-r--r--autodoc/source/parser/cpp/pe_expr.cxx29
1 files changed, 2 insertions, 27 deletions
diff --git a/autodoc/source/parser/cpp/pe_expr.cxx b/autodoc/source/parser/cpp/pe_expr.cxx
index d3b25bdf33df..0594e57077c5 100644
--- a/autodoc/source/parser/cpp/pe_expr.cxx
+++ b/autodoc/source/parser/cpp/pe_expr.cxx
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -54,33 +55,6 @@ void
PE_Expression::Call_Handler( const cpp::Token & i_rTok )
{
pStati->Cur().Call_Handler(i_rTok.TypeId(), i_rTok.Text());
-
-#if 0
- switch (i_rTok.TypeId())
- {
- case Tid_SwBracket_Left: SetTokenResult(done, stay);
- nBracketCounter++;
- bBlockOpened = true;
- break;
- case Tid_SwBracket_Right: SetTokenResult(done, stay);
- nBracketCounter--;
- break;
- case Tid_Semicolon: if (nBracketCounter == 0)
- SetTokenResult(done, pop_success);
- else
- SetTokenResult(done, stay);
- break;
- default:
- if ( bBlockOpened AND nBracketCounter == 0 )
- {
- SetTokenResult(not_done, pop_success);
- }
- else
- {
- SetTokenResult(done, stay);
- }
- } // end switch
-#endif // 0
}
void
@@ -202,3 +176,4 @@ PE_Expression::On_std_Comma( const char *)
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */