Skip to content

Commit cbae660

Browse files
committed
Add empty LIBMESH_PARALLEL_FLOAT_OPS macro for --disable-mpi case.
1 parent 05b2827 commit cbae660

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

include/parallel/parallel_implementation.h

+12
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,18 @@ namespace Parallel {
5454
StandardType(const cxxtype * = libmesh_nullptr) : DataType() {} \
5555
}
5656

57+
#define LIBMESH_PARALLEL_INTEGER_OPS(cxxtype) \
58+
template<> \
59+
class OpFunction<cxxtype> \
60+
{ \
61+
}
62+
63+
#define LIBMESH_PARALLEL_FLOAT_OPS(cxxtype) \
64+
template<> \
65+
class OpFunction<cxxtype> \
66+
{ \
67+
}
68+
5769
#endif
5870

5971
#define LIBMESH_INT_TYPE(cxxtype,mpitype) \

0 commit comments

Comments
 (0)