Changeset 244663 in webkit
- Timestamp:
- Apr 25, 2019, 2:27:10 PM (7 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 4 edited
-
ChangeLog (modified) (1 diff)
-
svg/properties/SVGAnimatedPropertyList.h (modified) (1 diff)
-
svg/properties/SVGProperty.h (modified) (1 diff)
-
svg/properties/SVGPropertyList.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r244660 r244663 1 2019-04-25 Alex Christensen <achristensen@webkit.org> 2 3 Fix more Windows builds after r244653 4 https://bugs.webkit.org/show_bug.cgi?id=197131 5 6 * svg/properties/SVGAnimatedPropertyList.h: 7 * svg/properties/SVGProperty.h: 8 * svg/properties/SVGPropertyList.h: 9 1 10 2019-04-25 Alex Christensen <achristensen@webkit.org> 2 11 -
trunk/Source/WebCore/svg/properties/SVGAnimatedPropertyList.h
r243336 r244663 110 110 } 111 111 112 // Visual Studio doesn't seem to see these private constructors from subclasses. 113 // FIXME: See what it takes to remove this hack. 114 #if !COMPILER(MSVC) 112 115 protected: 116 #endif 113 117 template<typename... Arguments> 114 118 SVGAnimatedPropertyList(SVGElement* contextElement, Arguments&&... arguments) -
trunk/Source/WebCore/svg/properties/SVGProperty.h
r243830 r244663 84 84 virtual String valueAsString() const { return emptyString(); } 85 85 86 // Visual Studio doesn't seem to see these private constructors from subclasses. 87 // FIXME: See what it takes to remove this hack. 88 #if !COMPILER(MSVC) 86 89 protected: 90 #endif 87 91 SVGProperty(SVGPropertyOwner* owner = nullptr, SVGPropertyAccess access = SVGPropertyAccess::ReadWrite) 88 92 : m_owner(owner) -
trunk/Source/WebCore/svg/properties/SVGPropertyList.h
r243421 r244663 38 38 using BaseList::append; 39 39 40 // Visual Studio doesn't seem to see these private constructors from subclasses. 41 // FIXME: See what it takes to remove this hack. 42 #if !COMPILER(MSVC) 40 43 protected: 44 #endif 41 45 using SVGPropertyOwner::SVGPropertyOwner; 42 46 using BaseList::m_items;
Note:
See TracChangeset
for help on using the changeset viewer.