ladybird/Services/ProtocolServer
Lenny Maiorani 765936ebae
Everywhere: Switch from (void) to [[maybe_unused]] (#4473)
Problem:
- `(void)` simply casts the expression to void. This is understood to
  indicate that it is ignored, but this is really a compiler trick to
  get the compiler to not generate a warning.

Solution:
- Use the `[[maybe_unused]]` attribute to indicate the value is unused.

Note:
- Functions taking a `(void)` argument list have also been changed to
  `()` because this is not needed and shows up in the same grep
  command.
2020-12-21 00:09:48 +01:00
..
ClientConnection.cpp AK: Add trivial structure validation to SharedBuffer 2020-10-02 15:38:07 +02:00
ClientConnection.h LibIPC: Share most of the code between {Client,Server}Connection 2020-09-12 14:49:29 +02:00
CMakeLists.txt ProtocolServer: Put everything in the ProtocolServer namespace 2020-05-17 16:33:09 +02:00
Download.cpp ProtocolServer+LibTLS: Pipe certificate requests from LibTLS to clients 2020-08-02 18:57:51 +02:00
Download.h ProtocolServer+LibTLS: Pipe certificate requests from LibTLS to clients 2020-08-02 18:57:51 +02:00
Forward.h ProtocolServer+LibTLS: Pipe certificate requests from LibTLS to clients 2020-08-02 18:57:51 +02:00
GeminiDownload.cpp Everywhere: Fix more typos 2020-10-03 12:36:49 +02:00
GeminiDownload.h ProtocolServer+LibTLS: Pipe certificate requests from LibTLS to clients 2020-08-02 18:57:51 +02:00
GeminiProtocol.cpp ProtocolServer+LibWeb: Support more detailed HTTP requests 2020-09-28 11:55:26 +02:00
GeminiProtocol.h ProtocolServer+LibWeb: Support more detailed HTTP requests 2020-09-28 11:55:26 +02:00
HttpDownload.cpp ProtocolServer+LibProtocol: Propagate HTTP status codes to clients 2020-06-13 22:20:37 +02:00
HttpDownload.h ProtocolServer: Put everything in the ProtocolServer namespace 2020-05-17 16:33:09 +02:00
HttpProtocol.cpp LibHTTP+ProtocolServer+LibGemini: Remove Request::schedule() 2020-10-30 23:42:03 +01:00
HttpProtocol.h ProtocolServer+LibWeb: Support more detailed HTTP requests 2020-09-28 11:55:26 +02:00
HttpsDownload.cpp ProtocolServer+LibTLS: Pipe certificate requests from LibTLS to clients 2020-08-02 18:57:51 +02:00
HttpsDownload.h ProtocolServer+LibTLS: Pipe certificate requests from LibTLS to clients 2020-08-02 18:57:51 +02:00
HttpsProtocol.cpp ProtocolServer+LibWeb: Support more detailed HTTP requests 2020-09-28 11:55:26 +02:00
HttpsProtocol.h ProtocolServer+LibWeb: Support more detailed HTTP requests 2020-09-28 11:55:26 +02:00
main.cpp Everywhere: Switch from (void) to [[maybe_unused]] (#4473) 2020-12-21 00:09:48 +01:00
Protocol.cpp ProtocolServer: Put everything in the ProtocolServer namespace 2020-05-17 16:33:09 +02:00
Protocol.h ProtocolServer+LibWeb: Support more detailed HTTP requests 2020-09-28 11:55:26 +02:00
ProtocolClient.ipc ProtocolServer+LibTLS: Pipe certificate requests from LibTLS to clients 2020-08-02 18:57:51 +02:00
ProtocolServer.ipc ProtocolServer+LibWeb: Support more detailed HTTP requests 2020-09-28 11:55:26 +02:00