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-2140-gfc538f7
Date: Sun, 15 Jun 2014 20:31:55 +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  fc538f7ad7b9ebf414b2859ee59ef4545e60f48d (commit)
       via  751fd35871fea080c13857e5957b233ecbd946ba (commit)
      from  a9f7f743c66f2f36d81c348da238d94877473372 (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=fc538f7ad7b9ebf414b2859ee59ef4545e60f48d


commit fc538f7ad7b9ebf414b2859ee59ef4545e60f48d
Author: Bastiaan Jacques <address@hidden>
Date:   Sun Jun 15 22:31:09 2014 +0200

    Fix build for some systems.

diff --git a/libsound/LiveSound.h b/libsound/LiveSound.h
index 8551297..1463bab 100644
--- a/libsound/LiveSound.h
+++ b/libsound/LiveSound.h
@@ -121,7 +121,7 @@ public:
     /// @return number of bytes previously copied by calls to copy().
     std::uint64_t consumed() const
     {
-        return std::max(_consumed, _in_point);
+        return std::max<uint64_t>(_consumed, _in_point);
     }
 
 private:

http://git.savannah.gnu.org/cgit//commit/?id=751fd35871fea080c13857e5957b233ecbd946ba


commit 751fd35871fea080c13857e5957b233ecbd946ba
Author: Bastiaan Jacques <address@hidden>
Date:   Sun Jun 15 22:11:35 2014 +0200

    Drop const for by-value parameter.

diff --git a/libcore/asobj/NetConnection_as.cpp 
b/libcore/asobj/NetConnection_as.cpp
index 1ce7268..4b987de 100644
--- a/libcore/asobj/NetConnection_as.cpp
+++ b/libcore/asobj/NetConnection_as.cpp
@@ -234,7 +234,7 @@ public:
     //
     /// @param nc   The NetConnection AS object to send status/error events to
     /// @param url  URL to post calls to
-    HTTPConnection(NetConnection_as& nc, const URL url)
+    HTTPConnection(NetConnection_as& nc, URL url)
         :
         Connection(nc),
         _url(std::move(url))

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

Summary of changes:
 libcore/asobj/NetConnection_as.cpp |    2 +-
 libsound/LiveSound.h               |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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