Changeset 56729 in webkit for trunk/JavaScriptCore/os-win32


Ignore:
Timestamp:
Mar 29, 2010, 10:31:53 AM (15 years ago)
Author:
[email protected]
Message:

2010-03-29 Patrick Gansterer <[email protected]>

Reviewed by Darin Adler.

Corrected name of (u)int64_t compile time assert.
https://bugs.webkit.org/show_bug.cgi?id=36739

int64_t_is_four_bytes -> int64_t_is_eight_bytes

  • os-win32/stdint.h:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/os-win32/stdint.h

    r56528 r56729  
    6262CASSERT(sizeof(int32_t) == 4, int32_t_is_four_bytes)
    6363CASSERT(sizeof(uint32_t) == 4, uint32_t_is_four_bytes)
    64 CASSERT(sizeof(int64_t) == 8, int64_t_is_four_bytes)
    65 CASSERT(sizeof(uint64_t) == 8, uint64_t_is_four_bytes)
     64CASSERT(sizeof(int64_t) == 8, int64_t_is_eight_bytes)
     65CASSERT(sizeof(uint64_t) == 8, uint64_t_is_eight_bytes)
    6666
    6767#endif
Note: See TracChangeset for help on using the changeset viewer.