Kernel: Decorate KResult with [[nodiscard]]

This commit is contained in:
Brian Gianforcaro 2020-08-05 02:14:29 -07:00 committed by Andreas Kling
commit f3cbb79f80
Notes: sideshowbarker 2024-07-19 04:16:49 +09:00

View file

@ -35,7 +35,7 @@ enum KSuccessTag {
KSuccess
};
class KResult {
class [[nodiscard]] KResult {
public:
ALWAYS_INLINE explicit KResult(int negative_e)
: m_error(negative_e)