Changeset 243215 in webkit


Ignore:
Timestamp:
Mar 20, 2019 11:02:52 AM (5 years ago)
Author:
Michael Catanzaro
Message:

REGRESSION(r243115) breaks build for clang 3.8
https://bugs.webkit.org/show_bug.cgi?id=195947

Reviewed by Chris Dumez.

  • wtf/text/StringConcatenate.h:

(WTF::tryMakeStringFromAdapters):

Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r243195 r243215  
     12019-03-20  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        REGRESSION(r243115) breaks build for clang 3.8
     4        https://bugs.webkit.org/show_bug.cgi?id=195947
     5
     6        Reviewed by Chris Dumez.
     7
     8        * wtf/text/StringConcatenate.h:
     9        (WTF::tryMakeStringFromAdapters):
     10
    1112019-03-20  Tim Horton  <timothy_horton@apple.com>
    212
  • trunk/Source/WTF/wtf/text/StringConcatenate.h

    r243115 r243215  
    279279        makeStringAccumulator(buffer, adapter, adapters...);
    280280
    281         return resultImpl;
     281        return String { WTFMove(resultImpl) };
    282282    }
    283283
     
    289289    makeStringAccumulator(buffer, adapter, adapters...);
    290290
    291     return resultImpl;
     291    return String { WTFMove(resultImpl) };
    292292}
    293293
Note: See TracChangeset for help on using the changeset viewer.