gfe-relnote: (n/a) Change typeof() to decltype() in quic_framer.cc. static_assert only.

PiperOrigin-RevId: 254006725
Change-Id: I42efc9dcc84d5430939421429a6632e2da00639b
diff --git a/quic/core/quic_framer.cc b/quic/core/quic_framer.cc
index 20c94f1..83ea19b 100644
--- a/quic/core/quic_framer.cc
+++ b/quic/core/quic_framer.cc
@@ -4926,7 +4926,7 @@
   }
   if (!no_stream_frame_length) {
     static_assert(
-        std::numeric_limits<typeof(frame.data_length)>::max() <=
+        std::numeric_limits<decltype(frame.data_length)>::max() <=
             std::numeric_limits<uint16_t>::max(),
         "If frame.data_length can hold more than a uint16_t than we need to "
         "check that frame.data_length <= std::numeric_limits<uint16_t>::max()");