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-2005-gbd1605d
Date: Mon, 19 May 2014 14:07:06 +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  bd1605d1b61335faa244d3674841e5965b2f89b4 (commit)
      from  2913a1dc92b8989f18222aa23dd7ac7fd7eb6c39 (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=bd1605d1b61335faa244d3674841e5965b2f89b4


commit bd1605d1b61335faa244d3674841e5965b2f89b4
Author: Bastiaan Jacques <address@hidden>
Date:   Mon May 19 16:06:29 2014 +0200

    Instantiate shared_ptr separately to make older GCCs happy.

diff --git a/libcore/movie_root.cpp b/libcore/movie_root.cpp
index b337629..88da4e3 100644
--- a/libcore/movie_root.cpp
+++ b/libcore/movie_root.cpp
@@ -821,7 +821,9 @@ movie_root::addIntervalTimer(std::unique_ptr<Timer> timer)
 
     assert(_intervalTimers.find(id) == _intervalTimers.end());
 
-    _intervalTimers.insert(std::make_pair(id, std::move(timer)));
+    boost::shared_ptr<Timer> addTimer(timer.release());
+
+    _intervalTimers.insert(std::make_pair(id, addTimer));
 
     return id;
 }

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

Summary of changes:
 libcore/movie_root.cpp |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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