Changeset 174295 in webkit
- Timestamp:
- Oct 3, 2014, 3:03:59 PM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
platform/graphics/transforms/AffineTransform.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r174287 r174295 1 2014-10-03 Brent Fulgham <bfulgham@apple.com> 2 3 [Win] Unreviewed build fix for MSVC 2013 SP 3. 4 5 The std::array initializer is not fully implemented in SP3 and causes a 6 build error. 7 8 * platform/graphics/transforms/AffineTransform.cpp: Use old style assignment 9 initialization for MSVC builds until this bug is fixed. 10 1 11 2014-10-03 Tim Horton <timothy_horton@apple.com> 2 12 -
trunk/Source/WebCore/platform/graphics/transforms/AffineTransform.cpp
r167017 r174295 38 38 namespace WebCore { 39 39 40 #if COMPILER(MSVC) 41 AffineTransform::AffineTransform() 42 { 43 m_transform = { 1, 0, 0, 1, 0, 0 }; 44 } 45 46 AffineTransform::AffineTransform(double a, double b, double c, double d, double e, double f) 47 { 48 m_transform = { a, b, c, d, e, f }; 49 } 50 #else 40 51 AffineTransform::AffineTransform() 41 52 : m_transform { { 1, 0, 0, 1, 0, 0 } } … … 44 55 45 56 AffineTransform::AffineTransform(double a, double b, double c, double d, double e, double f) 46 : m_transform { { a, b, c, d, e, f } } 47 { 48 } 57 : m_transform{ { a, b, c, d, e, f } } 58 { 59 } 60 #endif 49 61 50 62 void AffineTransform::makeIdentity()
Note:
See TracChangeset
for help on using the changeset viewer.