From f23350a61a3780372ca6fa244506de0ca87e4dc4 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 30 Dec 2024 10:30:55 -0500 Subject: [PATCH] minor final trying for speed since they often called --- http2.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/http2.d b/http2.d index 32b9082..20b0343 100644 --- a/http2.d +++ b/http2.d @@ -1134,8 +1134,8 @@ class HttpRequest { size_t bodyBytesReceived; State state_; - State state() { return state_; } - State state(State s) { + final State state() { return state_; } + final State state(State s) { assert(state_ != State.complete); return state_ = s; } @@ -3972,7 +3972,7 @@ version(use_openssl) { return 0; } - bool dataPending() { + final bool dataPending() { return OpenSSL.SSL_pending(ssl) > 0; }