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. 003262b1a162226646a5


From: Benjamin Wolsey
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. 003262b1a162226646a512afb927b6e7be5566f7
Date: Thu, 25 Nov 2010 08:46:42 +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  003262b1a162226646a512afb927b6e7be5566f7 (commit)
      from  bac9040e6e72d43dee109b5340c5e00f4a47abae (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=003262b1a162226646a512afb927b6e7be5566f7


commit 003262b1a162226646a512afb927b6e7be5566f7
Author: Benjamin Wolsey <address@hidden>
Date:   Thu Nov 25 09:46:19 2010 +0100

    Functions don't have ; after the close brace.

diff --git a/libbase/GnashNumeric.h b/libbase/GnashNumeric.h
index 62a4434..567811d 100644
--- a/libbase/GnashNumeric.h
+++ b/libbase/GnashNumeric.h
@@ -89,7 +89,7 @@ to_signed(unsigned_type t,
     const signed_type min = std::numeric_limits<signed_type>::min();
 
     return min + x;
-};
+}
 
 /// Convert a signed type to an unsigned type of the same width.
 //
@@ -116,7 +116,7 @@ to_unsigned(signed_type t,
     if (t >= 0) return t;
 
     return std::numeric_limits<unsigned_type>::max() + t + 1;
-};
+}
 
 inline double
 infinite_to_zero(double x)

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

Summary of changes:
 libbase/GnashNumeric.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

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