LSC: Mark static const class/struct members as constexpr. This change fixes declarations that have initial values but are technically not definitions by marking them constexpr (which counts as a definition). This enables, among other things, the modified constants to be passed into functions and function templates that accept arguments by reference. Without this change, such functions would cause linker errors.

This change was approved as part of go/static-const-lsc.

Tested:
    TAP --sample ran all affected tests and none failed
    http://test/OCL:306267456:BASE:306358834:1586841679820:8a4004b4
PiperOrigin-RevId: 306441151
Change-Id: I08ca761948d281d7f5a7609576178793287673ff
diff --git a/quic/core/quic_packet_creator_test.cc b/quic/core/quic_packet_creator_test.cc
index 1507ae5..98e86c3 100644
--- a/quic/core/quic_packet_creator_test.cc
+++ b/quic/core/quic_packet_creator_test.cc
@@ -282,7 +282,7 @@
            n * 2;
   }
 
-  static const QuicStreamOffset kOffset = 0u;
+  static constexpr QuicStreamOffset kOffset = 0u;
 
   char buffer_[kMaxOutgoingPacketSize];
   QuicConnectionId connection_id_;