Kaydet (Commit) da83d289 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Avoid signed/unsigned mismatch warnings with MSVC

Change-Id: I1cca248722d2c9cd4c5b41cca04a0d89b79f3dfa
üst 3f9416d7
......@@ -27,9 +27,7 @@ class SAL_WARN_UNUSED TOOLS_DLLPUBLIC UniqueIndexImpl
{
public:
typedef sal_uInt32 Index;
enum {
IndexNotFound = SAL_MAX_UINT32
};
static Index const IndexNotFound = SAL_MAX_UINT32;
private:
std::map<Index, void*> maMap;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment