summaryrefslogtreecommitdiffstats
path: root/src/mangen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-08-30 17:18:16 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-08-30 17:18:16 (GMT)
commit1e8a69902a2cbb3118e6de5959223b9c8d3a843a (patch)
tree45a003d85e72020661efcb975846aaa85d72de66 /src/mangen.cpp
parent2038873ce0a9ec90efb28730b3dc787d3d03e964 (diff)
downloadDoxygen-1e8a69902a2cbb3118e6de5959223b9c8d3a843a.zip
Doxygen-1e8a69902a2cbb3118e6de5959223b9c8d3a843a.tar.gz
Doxygen-1e8a69902a2cbb3118e6de5959223b9c8d3a843a.tar.bz2
Bug 735482 - [PATCH] Remove a not needed initialization of a local variable in src/mangen.cpp
Diffstat (limited to 'src/mangen.cpp')
-rw-r--r--src/mangen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mangen.cpp b/src/mangen.cpp
index d70e84e..dc02ccf 100644
--- a/src/mangen.cpp
+++ b/src/mangen.cpp
@@ -341,7 +341,7 @@ void ManGenerator::codify(const char *str)
break;
case '\n': t << "\n"; firstCol=TRUE; col=0; break;
case '\\': t << "\\"; col++; break;
- case '\"': c = '\''; // no break!
+ case '\"': // no break!
default: p=writeUtf8Char(t,p-1); firstCol=FALSE; col++; break;
}
}