Commit 66d8ab52 authored by ap@apple.com's avatar ap@apple.com

More Windows build fixing.

        * wtf/HashTraits.h: _msize takes void*, remove const qualifier from type.



git-svn-id: svn://svn.chromium.org/blink/trunk@53903 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent a20d9d3b
2010-01-26 Alexey Proskuryakov <ap@apple.com>
More Windows build fixing.
* wtf/HashTraits.h: _msize takes void*, remove const qualifier from type.
2010-01-26 Alexey Proskuryakov <ap@apple.com>
Windows build fix.
......
......@@ -94,7 +94,7 @@ namespace WTF {
#if OS(DARWIN)
ASSERT(malloc_size(p));
#elif COMPILER(MSVC)
ASSERT(_msize(p));
ASSERT(_msize(const_cast<P*>(p)));
#endif
#endif
HashTraits<P>::checkValueConsistency(*p);
......
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