Changeset 54038 in webkit


Ignore:
Timestamp:
Jan 28, 2010 6:57:58 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-01-28 Steve Block <steveblock@google.com>

Reviewed by David Levin.

Use long long rather than int64 in V8Binding.h
https://bugs.webkit.org/show_bug.cgi?id=34270

No new tests, build fix only.

  • bindings/v8/V8Binding.h: Modified. (WebCore::toInt64): Returns long long
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r54037 r54038  
     12010-01-28  Steve Block  <steveblock@google.com>
     2
     3        Reviewed by David Levin.
     4
     5        Use long long rather than int64 in V8Binding.h
     6        https://bugs.webkit.org/show_bug.cgi?id=34270
     7
     8        No new tests, build fix only.
     9
     10        * bindings/v8/V8Binding.h: Modified.
     11        (WebCore::toInt64): Returns long long
     12
    1132010-01-28  Avi Drissman  <avi@chromium.org>
    214
  • trunk/WebCore/bindings/v8/V8Binding.h

    r53574 r54038  
    113113    }
    114114
    115     inline int64 toInt64(v8::Local<v8::Value> value)
    116     {
    117         return static_cast<int64>(value->IntegerValue());
     115    inline long long toInt64(v8::Local<v8::Value> value)
     116    {
     117        return static_cast<long long>(value->IntegerValue());
    118118    }
    119119
Note: See TracChangeset for help on using the changeset viewer.