Changeset 64756 in webkit


Ignore:
Timestamp:
Aug 5, 2010 9:30:31 AM (14 years ago)
Author:
thakis@chromium.org
Message:

2010-08-05 Nico Weber <thakis@chromium.org>

Reviewed by Jeremy Orlow.

Remove useless const on return-by-value (fixes a clang warning)
https://bugs.webkit.org/show_bug.cgi?id=43491

  • src/WebInputEventConversion.cpp: (WebKit::toPlatformKeyboardEventType):
Location:
trunk/WebKit/chromium
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/chromium/ChangeLog

    r64749 r64756  
     12010-08-05  Nico Weber  <thakis@chromium.org>
     2
     3        Reviewed by Jeremy Orlow.
     4
     5        Remove useless const on return-by-value (fixes a clang warning)
     6        https://bugs.webkit.org/show_bug.cgi?id=43491
     7
     8        * src/WebInputEventConversion.cpp:
     9        (WebKit::toPlatformKeyboardEventType):
     10
    1112010-08-05  Satish Sampath  <satish@chromium.org>
    212
  • trunk/WebKit/chromium/src/WebInputEventConversion.cpp

    r64243 r64756  
    105105// MakePlatformKeyboardEvent --------------------------------------------------
    106106
    107 static inline const PlatformKeyboardEvent::Type toPlatformKeyboardEventType(WebInputEvent::Type type)
     107static inline PlatformKeyboardEvent::Type toPlatformKeyboardEventType(WebInputEvent::Type type)
    108108{
    109109    switch (type) {
Note: See TracChangeset for help on using the changeset viewer.