Skip to content

Commit 4fa0495

Browse files
QUICHE teamcopybara-github
authored andcommitted
Fix 1 ClangInliner finding:
* The use of this symbol has been deprecated and marked for inlining. The function being deprecated is down_cast. See go/inliner-lsc for more information on why you've received this change and why it is important. This CL looks good? Just LGTM and Approve it! This CL doesn’t look good? This is what you can do: * Revert this CL, by replying "REVERT: <provide reason>" * File a bug under go/inliner-bug for category ClangInliner if there's an issue with the CL content. * File a bug under go/rosie-bug if there's an issue with how the CL was managed. * For all other issues such as the formatting of the CL, please file a bug under go/clrobot-bug. * Revert this CL and not get a CL that cleans up these paths in the future by replying "BLOCKLIST: <provide reason>". This is not reversible! We recommend to opt out the respective paths in your CL Robot configuration instead: go/clrobot-opt-out. This CL was generated by CL Robot - a tool that cleans up code findings (go/clrobot). The affected code paths have been enabled for CL Robot in //depot/google3/METADATA by following go/clrobot#how-to-opt-in. Anything wrong with the signup? File a bug at go/clrobot-bug. #clrobot #base-casts.h Tested: Local presubmit tests passed. PiperOrigin-RevId: 862169325
1 parent 609c6f0 commit 4fa0495

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

quiche/quic/qbone/qbone_client.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ QboneClient::QboneClient(QuicSocketAddress server_address,
5050
QboneClient::~QboneClient() { ResetSession(); }
5151

5252
QboneClientSession* QboneClient::qbone_session() {
53-
return static_cast<QboneClientSession*>(QuicClientBase::session());
53+
return absl::static_cast<QboneClientSession*>(QuicClientBase::session());
5454
}
5555

5656
void QboneClient::ProcessPacketFromNetwork(absl::string_view packet) {

0 commit comments

Comments
 (0)