Use [[nodiscard]] instead of [[gnu::warn_unused_result]]

This commit is contained in:
Rangi
2026-07-08 16:44:15 -04:00
parent 276a1a7952
commit db96144d49
+1 -1
View File
@@ -169,7 +169,7 @@ void parseInlinePalSpec(char const * const rawArg) {
// Appends the first line read from `file` to the end of the provided `buffer`.
// Returns true if a line was read.
[[gnu::warn_unused_result]]
[[nodiscard]]
static bool readLine(std::filebuf &file, std::string &buffer) {
assume(buffer.empty());
for (;;) {