From ee16f623222a32adf309f4aca65010f3e9a54bd3 Mon Sep 17 00:00:00 2001 From: paboyle Date: Wed, 24 Jan 2018 13:31:17 +0000 Subject: [PATCH] stray semicolon elimination. NVCC is picky, but eventually picked up these diags with a pragma to suppress --- lib/communicator/Communicator_base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/communicator/Communicator_base.h b/lib/communicator/Communicator_base.h index cd64abb7..b6e50c24 100644 --- a/lib/communicator/Communicator_base.h +++ b/lib/communicator/Communicator_base.h @@ -198,7 +198,7 @@ public: template void Broadcast(int root,obj &data) { Broadcast(root,(void *)&data,sizeof(data)); - }; + } };