Changeset 244768 in webkit
- Timestamp:
- Apr 30, 2019, 7:32:43 AM (7 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
rendering/style/StyleColorScheme.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r244766 r244768 1 2019-04-30 Michael Catanzaro <mcatanzaro@igalia.com> 2 3 WebCore::StyleColorScheme should not have explicitly-declared copy constructor 4 https://bugs.webkit.org/show_bug.cgi?id=197412 5 6 Reviewed by Don Olmstead. 7 8 Either we need to explicitly declare a copy assignment operator here, or the copy 9 constructor needs to be removed. Having one without the other causes a huge warning spam 10 with GCC 9. In this case, the copy constructor is redundant because it's identical to an 11 implicitly-declared copy constructor, so let's just remove it. 12 13 * rendering/style/StyleColorScheme.h: 14 1 15 2019-04-30 Carlos Garcia Campos <cgarcia@igalia.com> 2 16 -
trunk/Source/WebCore/rendering/style/StyleColorScheme.h
r244408 r244768 37 37 StyleColorScheme() { } 38 38 39 StyleColorScheme(const StyleColorScheme& other)40 : m_colorScheme(other.m_colorScheme)41 , m_allowsTransformations(other.m_allowsTransformations)42 { }43 44 39 StyleColorScheme(OptionSet<ColorScheme> colorScheme, bool allowsTransformations) 45 40 : m_colorScheme(colorScheme)
Note:
See TracChangeset
for help on using the changeset viewer.