summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2021-02-20 17:50:41 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2021-02-20 19:17:52 (GMT)
commitcfdea8320f089c0f25fe72ecfb7ede76e39110d8 (patch)
tree11ba92461fb70accabfdc6b89163f0bccb1a69bc /src/doxygen.cpp
parenta59cd278932b11820dde87e764052622aa38980b (diff)
downloadDoxygen-cfdea8320f089c0f25fe72ecfb7ede76e39110d8.zip
Doxygen-cfdea8320f089c0f25fe72ecfb7ede76e39110d8.tar.gz
Doxygen-cfdea8320f089c0f25fe72ecfb7ede76e39110d8.tar.bz2
Disable qregex.h and fix some warnings and issues
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index f7849a3..3fd1069 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -2220,7 +2220,7 @@ static MemberDef *addVariableToFile(
{
ttype.stripPrefix("struct ");
ttype.stripPrefix("union ");
- static std::regex re("[:alpha:]_][:alnum:]_]*");
+ static std::regex re("[[:alpha:]_][[:alnum:]_]*");
std::smatch match;
std::string typ = ttype.str();
if (std::regex_search(typ,match,re))