File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -295,11 +295,12 @@ namespace compose
295295template class compose ::ConfigureLoadStore<ConfigureLoadStore>;
296296
297297/* clang-format would destroy the NOLINT comments */
298- // // clang-format off
298+ // clang-format off
299299#define INSTANTIATE_METHOD_TEMPLATES (dtype ) \
300300 template auto core::ConfigureLoadStore::enqueueStore () \
301301 -> DynamicMemoryView<dtype>; \
302302 template auto core::ConfigureLoadStore::enqueueLoad () \
303+ /* NOLINTNEXTLINE(bugprone-macro-parentheses) */ \
303304 -> auxiliary::DeferredFuture<std::shared_ptr<dtype>>; \
304305 template auto core::ConfigureLoadStore::load (EnqueuePolicy) \
305306 ->std::shared_ptr<dtype>;
Original file line number Diff line number Diff line change @@ -42,10 +42,13 @@ auto DeferredFuture<T>::wait() -> void
4242
4343template class DeferredFuture <void >;
4444template class DeferredFuture <auxiliary::detail::shared_ptr_dataset_types>;
45+ // clang-format off
4546#define INSTANTIATE_FUTURE (dtype ) \
47+ /* NOLINTNEXTLINE(bugprone-macro-parentheses) */ \
4648 template class DeferredFuture <std::shared_ptr<dtype>>;
4749OPENPMD_FOREACH_DATASET_DATATYPE (INSTANTIATE_FUTURE)
4850#undef INSTANTIATE_FUTURE
51+ // clang-format on
4952} // namespace openPMD::auxiliary
5053
5154#include " openPMD/UndefDatatypeMacros.hpp"
You can’t perform that action at this time.
0 commit comments