Go to the documentation of this file. 6 #ifndef BITCOIN_ATTRIBUTES_H 7 #define BITCOIN_ATTRIBUTES_H 9 #if defined(__has_cpp_attribute) 10 # if __has_cpp_attribute(nodiscard) 11 # define NODISCARD [[nodiscard]] 15 # if defined(_MSC_VER) && _MSC_VER >= 1700 16 # define NODISCARD _Check_return_ 18 # define NODISCARD __attribute__((warn_unused_result)) 22 #endif // BITCOIN_ATTRIBUTES_H