summaryrefslogtreecommitdiffstats
path: root/src/configimpl.l
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2018-11-27 10:34:55 (GMT)
committeralbert-github <albert.tests@gmail.com>2018-11-27 10:34:55 (GMT)
commitb6101af96fb793d9e9bdc0c34f0690545f3a1e56 (patch)
tree75537b0958a7d24c92b2b06ac64f3e20914faa6c /src/configimpl.l
parent8c7b1352474e4da5024cfc3ecc25a486b1d4ef2a (diff)
downloadDoxygen-b6101af96fb793d9e9bdc0c34f0690545f3a1e56.zip
Doxygen-b6101af96fb793d9e9bdc0c34f0690545f3a1e56.tar.gz
Doxygen-b6101af96fb793d9e9bdc0c34f0690545f3a1e56.tar.bz2
Keyword register (in code) is deprecated since C++11
The keyword `register` is deprecated since C++11: - for the Darwin platform it was already filtered (-Wno-deprecated-register) - CLan emits: 'register' storage class specifier is deprecated and incompatible with C++17 [-Wdeprecated-register]
Diffstat (limited to 'src/configimpl.l')
-rw-r--r--src/configimpl.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configimpl.l b/src/configimpl.l
index ed5b052..b533910 100644
--- a/src/configimpl.l
+++ b/src/configimpl.l
@@ -1263,7 +1263,7 @@ static void cleanUpPaths(QStrList &str)
char *sfp = str.first();
while (sfp)
{
- register char *p = sfp;
+ char *p = sfp;
if (p)
{
char c;