From 163bc6cd27a9db8671edd76bce08a2e6ab072a6d Mon Sep 17 00:00:00 2001 From: sdottaka Date: Mon, 3 Nov 2014 16:00:47 +0900 Subject: [PATCH] Plugins/src_VCPP/IngoreFieldsTab/typeinfoex.h: Fix a compiler warning --HG-- branch : stable --- Plugins/src_VCPP/IgnoreFieldsTab/typeinfoex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/src_VCPP/IgnoreFieldsTab/typeinfoex.h b/Plugins/src_VCPP/IgnoreFieldsTab/typeinfoex.h index 35e617fcd..a045bb856 100644 --- a/Plugins/src_VCPP/IgnoreFieldsTab/typeinfoex.h +++ b/Plugins/src_VCPP/IgnoreFieldsTab/typeinfoex.h @@ -90,7 +90,7 @@ public: { int n = ocslen(rgszNames[i]); int j; - for (int j=m_nCount-1; j>=0; j--) + for (j=m_nCount-1; j>=0; j--) { if ((n == m_pMap[j].nLen) && (memcmp(m_pMap[j].bstr, rgszNames[i], m_pMap[j].nLen * sizeof(OLECHAR)) == 0)) -- 2.11.0