diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-04 16:02:49 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-04 16:15:28 +0100 |
commit | 8fd288d86acbc6d490ece19d48f1b1af63774a98 (patch) | |
tree | e18cf2eb8e7140c3e39b287f3ca568c8fb618230 /extensions/source/activex/SOActionsApproval.cxx | |
parent | 591e0c10af469cd1ceee2a958c70f1b480883bff (diff) |
-Werror,-Wsign-compare
Change-Id: Ia7b0518a05cda8881ab6feed9852e9f060813b5c
Diffstat (limited to 'extensions/source/activex/SOActionsApproval.cxx')
-rw-r--r-- | extensions/source/activex/SOActionsApproval.cxx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/extensions/source/activex/SOActionsApproval.cxx b/extensions/source/activex/SOActionsApproval.cxx index b6b6d5986380..d0e24426252b 100644 --- a/extensions/source/activex/SOActionsApproval.cxx +++ b/extensions/source/activex/SOActionsApproval.cxx @@ -19,6 +19,10 @@ // SOActionsApproval.cpp : Implementation of CHelpApp and DLL registration. +#include <sal/config.h> + +#include <cstddef> + #include "stdafx2.h" #include "so_activex.h" @@ -33,7 +37,7 @@ STDMETHODIMP SOActionsApproval::InterfaceSupportsErrorInfo(REFIID riid) &IID_ISOActionsApproval, }; - for (int i=0;i<SAL_N_ELEMENTS(arr);i++) + for (std::size_t i=0;i<SAL_N_ELEMENTS(arr);i++) { #ifdef _MSC_VER if (InlineIsEqualGUID(*arr[i],riid)) |