Changeset 38303 in webkit for trunk/JavaScriptCore/VM/CTI.cpp


Ignore:
Timestamp:
Nov 11, 2008, 9:54:00 AM (17 years ago)
Author:
[email protected]
Message:

2008-11-11 Cameron Zwarich <[email protected]>

Rubber-stamped by Sam Weinig.

Make asInteger() a static function so that it has internal linkage.

  • VM/CTI.cpp: (JSC::asInteger):
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/VM/CTI.cpp

    r38294 r38303  
    169169#endif
    170170
    171 inline uintptr_t asInteger(JSValue* value)
     171static ALWAYS_INLINE uintptr_t asInteger(JSValue* value)
    172172{
    173173    return reinterpret_cast<uintptr_t>(value);
Note: See TracChangeset for help on using the changeset viewer.