Commit a20d9d3b authored by ap@apple.com's avatar ap@apple.com

Windows build fix.

        * wtf/HashTraits.h: Include malloc.h for _msize().



git-svn-id: svn://svn.chromium.org/blink/trunk@53902 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 697ea931
2010-01-26 Alexey Proskuryakov <ap@apple.com>
Windows build fix.
* wtf/HashTraits.h: Include malloc.h for _msize().
2010-01-26 Alexey Proskuryakov <ap@apple.com>
Build fix.
......
......@@ -26,8 +26,11 @@
#include <utility>
#include <limits>
// For malloc_size and _msize.
#if OS(DARWIN)
#include <malloc/malloc.h>
#elif COMPILER(MSVC)
#include <malloc.h>
#endif
namespace WTF {
......
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