serenity/Services/LookupServer
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
..
CMakeLists.txt Build: Switch to CMake :^) 2020-05-14 20:15:18 +02:00
DNSAnswer.cpp Services: Renamed from Servers 2020-05-08 21:57:44 +02:00
DNSAnswer.h Services: Renamed from Servers 2020-05-08 21:57:44 +02:00
DNSPacket.h AK: Add Endian.h header to replace NetworkOrdered.h. 2020-08-25 16:22:14 +02:00
DNSQuestion.h Services: Renamed from Servers 2020-05-08 21:57:44 +02:00
DNSRequest.cpp LookupServer: Use DuplexMemoryStream instead of BufferStream. 2020-09-21 09:37:49 +02:00
DNSRequest.h Services: Renamed from Servers 2020-05-08 21:57:44 +02:00
DNSResponse.cpp LookupServer: Put debug spam behind a macro 2020-12-06 01:16:39 +01:00
DNSResponse.h Meta: Add a script check the presence of "#pragma once" in header files 2020-05-29 07:59:45 +02:00
LookupServer.cpp LibCore: Make IODevice::read_line() return a String 2020-12-13 11:54:11 +01:00
LookupServer.h LookupServer: Support multiple nameservers 2020-10-25 18:52:20 +01:00
main.cpp Everywhere: Switch from (void) to [[maybe_unused]] (#4473) 2020-12-21 00:09:48 +01:00