Changeset 70829 in webkit


Ignore:
Timestamp:
Oct 28, 2010 5:43:42 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2010-10-28 Kwang Yul Seo <skyul@company100.net>

Reviewed by Darin Adler.

Include stddef.h unconditionally in Assertions.h
https://bugs.webkit.org/show_bug.cgi?id=48573

There is no reason to have stddef.h include be MSVC-only.

  • wtf/Assertions.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r70766 r70829  
     12010-10-28  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by Darin Adler.
     4
     5        Include stddef.h unconditionally in Assertions.h
     6        https://bugs.webkit.org/show_bug.cgi?id=48573
     7
     8        There is no reason to have stddef.h include be MSVC-only.
     9
     10        * wtf/Assertions.h:
     11
    1122010-10-28  Herczeg Zoltan  <zherczeg@webkit.org>
    213
  • trunk/JavaScriptCore/wtf/Assertions.h

    r66489 r70829  
    4545#include "Platform.h"
    4646
    47 #if COMPILER(MSVC)
    4847#include <stddef.h>
    49 #else
     48
     49#if !COMPILER(MSVC)
    5050#include <inttypes.h>
    5151#endif
Note: See TracChangeset for help on using the changeset viewer.