Ignore:
Timestamp:
Dec 17, 2018, 10:45:16 AM (6 years ago)
Author:
Matt Lewis
Message:

Unreviewed, rolling out r239254.

This broke the Windows 10 Debug build

Reverted changeset:

"Replace many uses of String::format with more type-safe
alternatives"
https://bugs.webkit.org/show_bug.cgi?id=192742
https://trac.webkit.org/changeset/239254

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jsc.cpp

    r239257 r239273  
    9090#include <wtf/WallTime.h>
    9191#include <wtf/text/StringBuilder.h>
    92 #include <wtf/text/StringConcatenateNumbers.h>
    9392
    9493#if OS(WINDOWS)
     
    11661165    StackVisitor::Status operator()(StackVisitor& visitor) const
    11671166    {
    1168         m_trace.append(makeString("    ", visitor->index(), "   ", visitor->toString(), '\n'));
     1167        m_trace.append(String::format("    %zu   %s\n", visitor->index(), visitor->toString().utf8().data()));
    11691168        return StackVisitor::Continue;
    11701169    }
Note: See TracChangeset for help on using the changeset viewer.