[gcc r12-2884] libstdc++: Add [[nodiscard]] to experimental::randint

Jonathan Wakely redi@gcc.gnu.org
Thu Aug 12 18:46:35 GMT 2021


https://gcc.gnu.org/g:20ce14c7991fbb498e32a0f5e3b01ae88c9f5e9a

commit r12-2884-g20ce14c7991fbb498e32a0f5e3b01ae88c9f5e9a
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Thu Aug 12 18:05:24 2021 +0100

    libstdc++: Add [[nodiscard]] to experimental::randint
    
    Signed-off-by: Jonathan Wakely <jwakely@redhat.com>
    
    libstdc++-v3/ChangeLog:
    
            * include/experimental/random (experimental::randint): Add
            nodiscard attribute.

Diff:
---
 libstdc++-v3/include/experimental/random | 1 +
 1 file changed, 1 insertion(+)

diff --git a/libstdc++-v3/include/experimental/random b/libstdc++-v3/include/experimental/random
index 2c2b359ff41..d7431e33e98 100644
--- a/libstdc++-v3/include/experimental/random
+++ b/libstdc++-v3/include/experimental/random
@@ -50,6 +50,7 @@ inline namespace fundamentals_v2 {
 
   // 13.2.2.1, Function template randint
   template<typename _IntType>
+    [[__nodiscard__]]
     inline _IntType
     randint(_IntType __a, _IntType __b)
     {


More information about the Libstdc++-cvs mailing list