Ignore:
Timestamp:
Jan 23, 2009, 11:40:56 AM (16 years ago)
Author:
[email protected]
Message:

2009-01-23 Anders Carlsson <[email protected]>

Reviewed by Sam Weinig.


Turn on -Wmissing-prototypes and fix the warnings.


  • API/JSClassRef.cpp: (clearReferenceToPrototype):
  • Configurations/Base.xcconfig:
  • runtime/Collector.cpp: (JSC::getPlatformThreadRegisters):
  • runtime/ExceptionHelpers.cpp: (JSC::createError):
  • runtime/JSGlobalObjectFunctions.h:
  • runtime/JSNumberCell.h:
  • runtime/UString.cpp: (JSC::initializeStaticBaseString): (JSC::createRep):
  • wtf/FastMalloc.cpp:
  • wtf/Threading.cpp:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/UString.cpp

    r39815 r40169  
    192192UString* UString::nullUString;
    193193
    194 void initializeStaticBaseString(int len, UChar* buf, UString::BaseString& base)
     194static void initializeStaticBaseString(int len, UChar* buf, UString::BaseString& base)
    195195{
    196196    base.offset = 0;
     
    497497}
    498498
    499 PassRefPtr<UString::Rep> createRep(const char* c)
     499static PassRefPtr<UString::Rep> createRep(const char* c)
    500500{
    501501    if (!c)
Note: See TracChangeset for help on using the changeset viewer.