[gcc r14-8597] gccrs: TyTy: Fix missed nodiscard
Arthur Cohen
cohenarthur@gcc.gnu.org
Tue Jan 30 12:00:30 GMT 2024
https://gcc.gnu.org/g:ed198edc9bfc17b4c2356068623aa31bda4e1ee7
commit r14-8597-ged198edc9bfc17b4c2356068623aa31bda4e1ee7
Author: Jakub Dupak <dev@jakubdupak.com>
Date: Sun Dec 3 11:13:04 2023 +0100
gccrs: TyTy: Fix missed nodiscard
gcc/rust/ChangeLog:
* typecheck/rust-tyty.h: Fix nodiscard to warn unused.
Signed-off-by: Jakub Dupak <dev@jakubdupak.com>
Diff:
---
gcc/rust/typecheck/rust-tyty.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gcc/rust/typecheck/rust-tyty.h b/gcc/rust/typecheck/rust-tyty.h
index 8bfa83da8d8b..da4b901724db 100644
--- a/gcc/rust/typecheck/rust-tyty.h
+++ b/gcc/rust/typecheck/rust-tyty.h
@@ -177,7 +177,7 @@ public:
virtual BaseType *clone () const = 0;
// Check if TyTy::BaseType is of a specific type.
- template <typename T>[[nodiscard]] bool is () const
+ template <typename T> WARN_UNUSED_RESULT bool is () const
{
static_assert (std::is_base_of<BaseType, T>::value,
"Can only safely cast to TyTy types.");
More information about the Gcc-cvs
mailing list