From f9cac3c71b8d545c92658055807398b4b3455f75 Mon Sep 17 00:00:00 2001 From: KUDr Date: Sat, 30 Jun 2007 00:17:07 +0000 Subject: (svn r10395) -Fix [YAPF]: missing include + some signed/unsigned comparison warnings --- src/misc/dbg_helpers.cpp | 2 +- src/misc/dbg_helpers.h | 4 ++-- src/yapf/yapf.hpp | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/misc/dbg_helpers.cpp b/src/misc/dbg_helpers.cpp index 3dc7f91d4..561de50f3 100644 --- a/src/misc/dbg_helpers.cpp +++ b/src/misc/dbg_helpers.cpp @@ -1,4 +1,4 @@ -/* $Id:$ */ +/* $Id$ */ /** @file dbg_helpers.cpp */ #include "../stdafx.h" diff --git a/src/misc/dbg_helpers.h b/src/misc/dbg_helpers.h index 7aecd9a02..65bf08a5c 100644 --- a/src/misc/dbg_helpers.h +++ b/src/misc/dbg_helpers.h @@ -1,4 +1,4 @@ -/* $Id:$ */ +/* $Id$ */ /** @file dbg_helpers.h */ @@ -67,7 +67,7 @@ inline CStrA ComposeNameT(E value, T &t, const char* t_unk, E val_inv, const cha } else if (value == 0) { out = ""; } else { - for (int i = 0; i < ArrayT::length; i++) { + for (size_t i = 0; i < ArrayT::length; i++) { if ((value & (1 << i)) == 0) continue; out.AddFormat("%s%s", (out.Size() > 0 ? "+" : ""), t[i]); value &= ~(E)(1 << i); diff --git a/src/yapf/yapf.hpp b/src/yapf/yapf.hpp index 2e107b052..f98a7c607 100644 --- a/src/yapf/yapf.hpp +++ b/src/yapf/yapf.hpp @@ -74,6 +74,7 @@ typedef CPerfStartFake CPerfStart; #include "../misc/crc32.hpp" #include "../misc/blob.hpp" +#include "../misc/str.hpp" #include "../misc/fixedsizearray.hpp" #include "../misc/array.hpp" #include "../misc/hashtable.hpp" -- cgit v1.2.3-70-g09d2