gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Bastiaan Jacques
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-2106-g7349e86
Date: Wed, 04 Jun 2014 16:00:52 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  7349e86703cb74cfaa870f39eb892e6c7eb7a7b0 (commit)
       via  02b8170d613143334f43dce315e33fc6504c030c (commit)
      from  0c13c8e5a45e065ae4524d743359f7d04f171ece (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=7349e86703cb74cfaa870f39eb892e6c7eb7a7b0


commit 7349e86703cb74cfaa870f39eb892e6c7eb7a7b0
Author: Bastiaan Jacques <address@hidden>
Date:   Wed Jun 4 18:00:20 2014 +0200

    Fix typo.

diff --git a/librender/opengl/Renderer_ogl.cpp 
b/librender/opengl/Renderer_ogl.cpp
index 0820b88..b377a9e 100644
--- a/librender/opengl/Renderer_ogl.cpp
+++ b/librender/opengl/Renderer_ogl.cpp
@@ -495,7 +495,7 @@ Tesselator::tesselate()
 {
   gluTessEndPolygon(_tessobj);
 
-  for (Gldouble* vertex: _vertices) {
+  for (GLdouble* vertex: _vertices) {
     delete [] vertex;
   }
 

http://git.savannah.gnu.org/cgit//commit/?id=02b8170d613143334f43dce315e33fc6504c030c


commit 02b8170d613143334f43dce315e33fc6504c030c
Author: Bastiaan Jacques <address@hidden>
Date:   Wed Jun 4 16:38:12 2014 +0200

    Retain compatibility with GCC 4.6.

diff --git a/libcore/Geometry.h b/libcore/Geometry.h
index fe8cf78..f421ed5 100644
--- a/libcore/Geometry.h
+++ b/libcore/Geometry.h
@@ -68,10 +68,10 @@ public:
         ap(from.ap)
     {}
 
-    constexpr Edge(point ncp, point nap)
+    constexpr Edge(const point& ncp, const point& nap)
         :
-        cp(std::move(ncp)),
-        ap(std::move(nap))
+        cp(ncp),
+        ap(nap)
     {}
 
     bool straight() const

-----------------------------------------------------------------------

Summary of changes:
 libcore/Geometry.h                |    6 +++---
 librender/opengl/Renderer_ogl.cpp |    2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]