summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-11-29 12:14:55 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-11-29 12:14:55 (GMT)
commit6d505c28e8f689234e8574ca2e0a2836500198eb (patch)
tree56989e9f90df4aecbeca5082dea4dd515e5c2885 /src
parenta159f53f032b04064df0c9ad9d7d02f0622f0529 (diff)
downloadDoxygen-6d505c28e8f689234e8574ca2e0a2836500198eb.zip
Doxygen-6d505c28e8f689234e8574ca2e0a2836500198eb.tar.gz
Doxygen-6d505c28e8f689234e8574ca2e0a2836500198eb.tar.bz2
Fix shadowing warning for hex constant
Diffstat (limited to 'src')
-rw-r--r--src/util.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 32a47df..74e5226 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -6502,7 +6502,6 @@ QCString replaceColorMarkers(const char *str)
QCString s=str;
if (s.isEmpty()) return result;
static QRegExp re("##[0-9A-Fa-f][0-9A-Fa-f]");
- static const char hex[] = "0123456789ABCDEF";
static int hue = Config_getInt(HTML_COLORSTYLE_HUE);
static int sat = Config_getInt(HTML_COLORSTYLE_SAT);
static int gamma = Config_getInt(HTML_COLORSTYLE_GAMMA);