Skip to content

Commit 02b4522

Browse files
authored
[NFC][flang] Added deduction guide for StaticDescriptor class. (llvm#131690)
I keep getting these warnings when building with clang-17: `warning: 'StaticDescriptor' may not intend to support class template argument deduction [-Wctad-maybe-unsupported]` This change should help avoiding them.
1 parent 127eb39 commit 02b4522

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

flang-rt/include/flang-rt/runtime/descriptor.h

+3
Original file line numberDiff line numberDiff line change
@@ -481,5 +481,8 @@ class alignas(Descriptor) StaticDescriptor {
481481
char storage_[byteSize]{};
482482
};
483483

484+
// Deduction guide to avoid warnings from older versions of clang.
485+
StaticDescriptor() -> StaticDescriptor<maxRank, false, 0>;
486+
484487
} // namespace Fortran::runtime
485488
#endif // FLANG_RT_RUNTIME_DESCRIPTOR_H_

0 commit comments

Comments
 (0)