From: Wolfgang Bangerth Date: Mon, 17 Feb 2003 00:12:16 +0000 (+0000) Subject: Remove stray semicolons. X-Git-Tag: v8.0.0~16931 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aed8234f88fe9e98150c006c81af8c322e976797;p=dealii.git Remove stray semicolons. git-svn-id: https://svn.dealii.org/trunk@7111 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/include/base/thread_management.h b/deal.II/base/include/base/thread_management.h index 541c3cf7b0..2feedc18d6 100644 --- a/deal.II/base/include/base/thread_management.h +++ b/deal.II/base/include/base/thread_management.h @@ -4837,7 +4837,7 @@ namespace Threads ArgRefs arg_refs) { internal::call (fun_ptr, obj, arg_refs, rv); - }; + } /** * Initialize the return value @@ -4850,7 +4850,7 @@ namespace Threads ArgRefs arg_refs) { internal::call (fun_ptr, arg_refs, rv); - }; + } /** * Get the return value of the @@ -4860,14 +4860,14 @@ namespace Threads RT return_value () const { return rv.get(); - }; + } /** * Join this thread. Is of * course a no-op in this of no * thread support. */ - void join () const {}; + void join () const {} /** * Compare for equality of @@ -4883,7 +4883,7 @@ namespace Threads bool operator == (const Thread &) { return true; - }; + } private: /** @@ -4965,7 +4965,7 @@ namespace Threads operator() () { return Thread (mem_fun_ptr, c, ArgList()); - }; + } private: C &c;