diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-12-17 20:24:14 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-12-17 20:24:14 (GMT) |
commit | e47f3d0635e7dd532bb28f6cfc63f2f1efdc46cb (patch) | |
tree | 7c7f9c7cabb5274d0b66b30bf6e922fccf41cb6b | |
parent | a8ada594193ff86f2d0857c1392ef1bbe766b362 (diff) | |
download | Doxygen-e47f3d0635e7dd532bb28f6cfc63f2f1efdc46cb.zip Doxygen-e47f3d0635e7dd532bb28f6cfc63f2f1efdc46cb.tar.gz Doxygen-e47f3d0635e7dd532bb28f6cfc63f2f1efdc46cb.tar.bz2 |
Fixed compiler warning related to implicit size_t to int conversion
-rw-r--r-- | src/debug.cpp | 2 |
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) { |