[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.2-413-g8d4de3b
Service Account
noreply at mpich.org
Wed Aug 31 09:38:39 CDT 2016
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 "MPICH primary repository".
The branch, master has been updated
via 8d4de3bd8d64fb545e9046e6b78ef766a90aaee9 (commit)
from ac947d5c4576ff9683eb945c823c0974173a7b4b (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.mpich.org/mpich.git/commitdiff/8d4de3bd8d64fb545e9046e6b78ef766a90aaee9
commit 8d4de3bd8d64fb545e9046e6b78ef766a90aaee9
Author: Eric Chamberland <ericc at giref.ulaval.ca>
Date: Mon Aug 29 09:53:13 2016 -0500
binding/cxx: Fix extra semicolon warning
Signed-off-by: Ken Raffenetti <raffenet at mcs.anl.gov>
diff --git a/src/binding/cxx/buildiface b/src/binding/cxx/buildiface
index ab0b1a4..2491f4d 100755
--- a/src/binding/cxx/buildiface
+++ b/src/binding/cxx/buildiface
@@ -3573,14 +3573,14 @@ sub Clone_method {
MPI_Comm_dup( (MPI_Comm)the_real_comm, &ncomm);
Comm *clone = new $classname(ncomm);
return *clone;
- };
+ }
#else
virtual $classname & Clone(void) const {
MPI_Comm ncomm;
MPI_Comm_dup( (MPI_Comm)the_real_comm, &ncomm);
$classname *clone = new $classname(ncomm);
return *clone;
- };
+ }
#endif\n";
}
sub Comm_methods {
@@ -3673,12 +3673,12 @@ sub Nullcomm_methods {
virtual Comm & Clone(void) const {
Comm *clone = new Nullcomm(MPI_COMM_NULL);
return *clone;
- };
+ }
#else
virtual Nullcomm & Clone(void) const {
Nullcomm *clone = new Nullcomm();
return *clone;
- };
+ }
#endif\n";
}
-----------------------------------------------------------------------
Summary of changes:
src/binding/cxx/buildiface | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
hooks/post-receive
--
MPICH primary repository
More information about the commits
mailing list