[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.22-985-g3c00f00
japhet at chromium.org
japhet at chromium.org
Wed Mar 17 18:34:02 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 71183a19f22ed1c6bed267fc64881b8a00eac492
Author: japhet at chromium.org <japhet at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Thu Mar 11 22:42:14 2010 +0000
2010-03-11 Nate Chapin <japhet at chromium.org>
Reviewed by Dimitri Glazkov.
Fix style issues and improve comments from
http://trac.webkit.org/changeset/55853.
https://bugs.webkit.org/show_bug.cgi?id=36029
* platform/animation/TimingFunction.h:
(WebCore::TimingFunction::TimingFunction):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55856 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index d1bc8f1..0e992f4 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,15 @@
+2010-03-11 Nate Chapin <japhet at chromium.org>
+
+ Reviewed by Dimitri Glazkov.
+
+ Fix style issues and improve comments from
+ http://trac.webkit.org/changeset/55853.
+
+ https://bugs.webkit.org/show_bug.cgi?id=36029
+
+ * platform/animation/TimingFunction.h:
+ (WebCore::TimingFunction::TimingFunction):
+
2010-03-11 Chris Fleizach <cfleizach at apple.com>
Reviewed by Beth Dakin.
diff --git a/WebCore/platform/animation/TimingFunction.h b/WebCore/platform/animation/TimingFunction.h
index e02889d..d3f71ff 100644
--- a/WebCore/platform/animation/TimingFunction.h
+++ b/WebCore/platform/animation/TimingFunction.h
@@ -39,13 +39,13 @@ struct TimingFunction : FastAllocBase {
{
}
- // This explicit copy constructor works around an inlining bug in GCC.
+ // This explicit copy constructor works around an inlining bug in GCC 4.2 (only reproed on mac, but may exist on other platforms).
TimingFunction(const TimingFunction& that)
- : m_type(that.m_type),
- m_x1(that.m_x1),
- m_y1(that.m_y1),
- m_x2(that.m_x2),
- m_y2(that.m_y2)
+ : m_type(that.m_type)
+ , m_x1(that.m_x1)
+ , m_y1(that.m_y1)
+ , m_x2(that.m_x2)
+ , m_y2(that.m_y2)
{
}
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list