summaryrefslogtreecommitdiffstats
path: root/src/sqlite3gen.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2021-01-13 17:26:35 (GMT)
committeralbert-github <albert.tests@gmail.com>2021-01-13 17:26:35 (GMT)
commit4dba9fbdda10889d2285b85b7e9ff6282b34fccf (patch)
treef94d74cab726675800b6f7bb25bae8b4466bfb0a /src/sqlite3gen.cpp
parent6acb8c375f28e9f058769f3a0c7d0325a3bf58e7 (diff)
downloadDoxygen-4dba9fbdda10889d2285b85b7e9ff6282b34fccf.zip
Doxygen-4dba9fbdda10889d2285b85b7e9ff6282b34fccf.tar.gz
Doxygen-4dba9fbdda10889d2285b85b7e9ff6282b34fccf.tar.bz2
bug_305773 Volatile declaration is missing for variables in XML output
Handle "const" and "volatile" in the same way, they are bit cv-qualifiers
Diffstat (limited to 'src/sqlite3gen.cpp')
-rw-r--r--src/sqlite3gen.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/sqlite3gen.cpp b/src/sqlite3gen.cpp
index 67adebf..f0d2a12 100644
--- a/src/sqlite3gen.cpp
+++ b/src/sqlite3gen.cpp
@@ -1143,7 +1143,6 @@ static void stripQualifiers(QCString &typeStr)
{
if (typeStr.stripPrefix("static "));
else if (typeStr.stripPrefix("virtual "));
- else if (typeStr.stripPrefix("volatile "));
else if (typeStr=="virtual") typeStr="";
else done=TRUE;
}