Internal change
PiperOrigin-RevId: 497269082
This commit is contained in:
parent
557cd050f3
commit
5a5ff5393a
|
@ -398,7 +398,7 @@ template <class Calc = internal::Generic>
|
||||||
class Node;
|
class Node;
|
||||||
#if __cplusplus >= 201703L
|
#if __cplusplus >= 201703L
|
||||||
// Deduction guide to silence -Wctad-maybe-unsupported.
|
// Deduction guide to silence -Wctad-maybe-unsupported.
|
||||||
explicit Node()->Node<internal::Generic>;
|
explicit Node() -> Node<internal::Generic>;
|
||||||
#endif // C++17
|
#endif // C++17
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
|
|
|
@ -181,7 +181,7 @@ template <typename T = internal::Generic>
|
||||||
class Packet;
|
class Packet;
|
||||||
#if __cplusplus >= 201703L
|
#if __cplusplus >= 201703L
|
||||||
// Deduction guide to silence -Wctad-maybe-unsupported.
|
// Deduction guide to silence -Wctad-maybe-unsupported.
|
||||||
explicit Packet()->Packet<internal::Generic>;
|
explicit Packet() -> Packet<internal::Generic>;
|
||||||
#endif // C++17
|
#endif // C++17
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user