summaryrefslogtreecommitdiffstats
path: root/src/outputgen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-07-09 19:45:37 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-07-09 19:45:37 (GMT)
commit56bc9bda61e06b9bd6da5aa58083e93a3b55a465 (patch)
tree2dbdf12fc6696bf3a9d133e8e23ef223690e919a /src/outputgen.cpp
parentadb81f79061729efc28e71c1474c35e21283b049 (diff)
downloadDoxygen-56bc9bda61e06b9bd6da5aa58083e93a3b55a465.zip
Doxygen-56bc9bda61e06b9bd6da5aa58083e93a3b55a465.tar.gz
Doxygen-56bc9bda61e06b9bd6da5aa58083e93a3b55a465.tar.bz2
Release-1.1.5_20000709
Diffstat (limited to 'src/outputgen.cpp')
-rw-r--r--src/outputgen.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/outputgen.cpp b/src/outputgen.cpp
index 722558d..95ef0b0 100644
--- a/src/outputgen.cpp
+++ b/src/outputgen.cpp
@@ -90,8 +90,9 @@ void OutputGenerator::pushGeneratorState()
void OutputGenerator::popGeneratorState()
{
- bool *b = genStack->pop();
- ASSERT(b!=0);
- if (b==0) return; // for some robustness against superfluous \endhtmlonly commands.
- if (*b) enable(); else disable();
+ bool *lb = genStack->pop();
+ ASSERT(lb!=0);
+ if (lb==0) return; // for some robustness against superfluous \endhtmlonly commands.
+ if (*lb) enable(); else disable();
}
+