Also clean up redundant public access specifiers.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
mlir/include/mlir/Support/DebugAction.h | ||
---|---|---|
198 | TypeID::get<Handler> fails to build in GCC. It works fine in Clang and MSVC. GCC thinks Handler can also be a template for some reason (bug?), and complains the call is ambiguous because it can match the template <template <typename> class> TypeID::get overload. |
Comment Actions
Nice. Thanks for fixing this! Can you also update the documentation (DebugActions.md)?
TypeID::get<Handler> fails to build in GCC. It works fine in Clang and MSVC. GCC thinks Handler can also be a template for some reason (bug?), and complains the call is ambiguous because it can match the template <template <typename> class> TypeID::get overload.