Changeset 206199 in webkit


Ignore:
Timestamp:
Sep 20, 2016 11:44:04 PM (8 years ago)
Author:
nael.ouedraogo@crf.canon.fr
Message:

VariadicHelper::Result should not include constructor to initialize members
https://bugs.webkit.org/show_bug.cgi?id=162298

Reviewed by Darin Adler.

Remove the constructor since member-wise initialization does the same thing.

No new tests required.

  • bindings/js/JSDOMBinding.h: Remove useless constructor.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r206198 r206199  
     12016-09-20  Nael Ouedraogo  <nael.ouedraogo@crf.canon.fr>
     2
     3        VariadicHelper::Result should not include constructor to initialize members
     4        https://bugs.webkit.org/show_bug.cgi?id=162298
     5
     6        Reviewed by Darin Adler.
     7
     8        Remove the constructor since member-wise initialization does the same thing.
     9
     10        No new tests required.
     11
     12        * bindings/js/JSDOMBinding.h: Remove useless constructor.
     13
    1142016-09-20  Alex Christensen  <achristensen@webkit.org>
    215
  • trunk/Source/WebCore/bindings/js/JSDOMBinding.h

    r206090 r206199  
    359359
    360360    struct Result {
    361         Result(size_t argumentIndex, Optional<Container>&& arguments)
    362             : argumentIndex(argumentIndex)
    363             , arguments(WTFMove(arguments))
    364         {
    365         }
    366361        size_t argumentIndex;
    367362        Optional<Container> arguments;
Note: See TracChangeset for help on using the changeset viewer.