Internal change

PiperOrigin-RevId: 497269082
This commit is contained in:
MediaPipe Team 2022-12-22 17:29:23 -08:00 committed by Copybara-Service
parent 557cd050f3
commit 5a5ff5393a
2 changed files with 2 additions and 2 deletions

View File

@ -398,7 +398,7 @@ template <class Calc = internal::Generic>
class Node;
#if __cplusplus >= 201703L
// Deduction guide to silence -Wctad-maybe-unsupported.
explicit Node()->Node<internal::Generic>;
explicit Node() -> Node<internal::Generic>;
#endif // C++17
template <>

View File

@ -181,7 +181,7 @@ template <typename T = internal::Generic>
class Packet;
#if __cplusplus >= 201703L
// Deduction guide to silence -Wctad-maybe-unsupported.
explicit Packet()->Packet<internal::Generic>;
explicit Packet() -> Packet<internal::Generic>;
#endif // C++17
template <>