summaryrefslogtreecommitdiffstats
path: root/src/debug.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-12-17 20:24:14 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-12-17 20:24:14 (GMT)
commite47f3d0635e7dd532bb28f6cfc63f2f1efdc46cb (patch)
tree7c7f9c7cabb5274d0b66b30bf6e922fccf41cb6b /src/debug.cpp
parenta8ada594193ff86f2d0857c1392ef1bbe766b362 (diff)
downloadDoxygen-e47f3d0635e7dd532bb28f6cfc63f2f1efdc46cb.zip
Doxygen-e47f3d0635e7dd532bb28f6cfc63f2f1efdc46cb.tar.gz
Doxygen-e47f3d0635e7dd532bb28f6cfc63f2f1efdc46cb.tar.bz2
Fixed compiler warning related to implicit size_t to int conversion
Diffstat (limited to 'src/debug.cpp')
-rw-r--r--src/debug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/debug.cpp b/src/debug.cpp
index a2b2707..a5000ff 100644
--- a/src/debug.cpp
+++ b/src/debug.cpp
@@ -124,7 +124,7 @@ bool Debug::isFlagSet(DebugMask mask)
void Debug::printFlags(void)
{
int i;
- for (i = 0; i < sizeof(s_labels)/sizeof(*s_labels); i++)
+ for (i = 0; i < (int)(sizeof(s_labels)/sizeof(*s_labels)); i++)
{
if (s_labels[i].name)
{