| 106 | template <typename... T> |
| 107 | VTK_DEPRECATED_IN_9_6_0("Use vtkMPIUtilities::SynchronizedPrint instead") |
| 108 | void SynchronizedPrintf(vtkMPIController* comm, const char* formatArg, T&&... args) |
| 109 | { |
| 110 | std::string format = formatArg ? vtk::to_std_format(formatArg) : ""; |
| 111 | assert(comm != nullptr); |
| 112 | vtkMPIUtilities::SynchronizedPrint(comm, format.c_str(), std::forward<T>(args)...); |
| 113 | } |
| 114 | ///@} |
| 115 | VTK_ABI_NAMESPACE_END |
| 116 | } // END namespace vtkMPIUtilities |
nothing calls this directly
no test coverage detected