Changeset 221628 in webkit


Ignore:
Timestamp:
Sep 5, 2017 12:02:30 PM (7 years ago)
Author:
pvollan@apple.com
Message:

[Win] Compile errors in pathByAppendingComponents.
https://bugs.webkit.org/show_bug.cgi?id=176387

Reviewed by Brent Fulgham.

The pathByAppendingComponents function has changed signature.

  • platform/win/FileSystemWin.cpp:

(WebCore::pathByAppendingComponents):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r221627 r221628  
     12017-09-05  Per Arne Vollan  <pvollan@apple.com>
     2
     3        [Win] Compile errors in pathByAppendingComponents.
     4        https://bugs.webkit.org/show_bug.cgi?id=176387
     5
     6        Reviewed by Brent Fulgham.
     7
     8        The pathByAppendingComponents function has changed signature.
     9
     10        * platform/win/FileSystemWin.cpp:
     11        (WebCore::pathByAppendingComponents):
     12
    1132017-09-05  Simon Fraser  <simon.fraser@apple.com>
    214
  • trunk/Source/WebCore/platform/win/FileSystemWin.cpp

    r221612 r221628  
    266266String pathByAppendingComponents(StringView path, const Vector<StringView>& components)
    267267{
    268     String result = path;
     268    String result = path.toString();
    269269    for (auto& component : components)
    270         result = pathByAppendingComponent(result, component);
     270        result = pathByAppendingComponent(result, component.toString());
    271271    return result;
    272272}
Note: See TracChangeset for help on using the changeset viewer.