Changeset 202553 in webkit


Ignore:
Timestamp:
Jun 28, 2016 12:10:01 AM (8 years ago)
Author:
jh718.park@samsung.com
Message:

[JSC] Fix build break since r202502
https://bugs.webkit.org/show_bug.cgi?id=159194

Reviewed by Alex Christensen.

Fix about the error message below.
error: control reaches end of non-void function [-Werror=return-type]

  • b3/B3TypeMap.h:

(JSC::B3::TypeMap::at): add missing ASSERT_NOT_REACHED().

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r202528 r202553  
     12016-06-28  Joonghun Park  <jh718.park@samsung.com>
     2
     3        [JSC] Fix build break since r202502
     4        https://bugs.webkit.org/show_bug.cgi?id=159194
     5
     6        Reviewed by Alex Christensen.
     7
     8        Fix about the error message below.
     9        error: control reaches end of non-void function [-Werror=return-type]
     10
     11        * b3/B3TypeMap.h:
     12        (JSC::B3::TypeMap::at): add missing ASSERT_NOT_REACHED().
     13
    1142016-06-27  Keith Miller  <keith_miller@apple.com>
    215
  • trunk/Source/JavaScriptCore/b3/B3TypeMap.h

    r202502 r202553  
    6060            return m_double;
    6161        }
     62        ASSERT_NOT_REACHED();
    6263    }
    6364   
Note: See TracChangeset for help on using the changeset viewer.