1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-04-09 21:50:45 +01:00

stray semicolon elimination. NVCC is picky, but eventually picked up these diags

with a pragma to suppress
This commit is contained in:
paboyle 2018-01-24 13:31:17 +00:00
parent 3318de27d6
commit ee16f62322

View File

@ -198,7 +198,7 @@ public:
template<class obj> void Broadcast(int root,obj &data) template<class obj> void Broadcast(int root,obj &data)
{ {
Broadcast(root,(void *)&data,sizeof(data)); Broadcast(root,(void *)&data,sizeof(data));
}; }
}; };