aboutsummaryrefslogtreecommitdiff
path: root/examples/basic/src/interfaces/weapon.hpp
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2022-06-09 17:10:32 +0200
committerHampusM <hampus@hampusmat.com>2022-06-09 17:10:32 +0200
commita5d218fd1a7e842b7ea4ac7809b0ba89856a5205 (patch)
tree77021d322f45a2b1d17bc79dc6189df1562ba2ea /examples/basic/src/interfaces/weapon.hpp
parent58762e6e029d71ed72b094ec2d5831b6cac4e27b (diff)
docs: fix basic example code style
Diffstat (limited to 'examples/basic/src/interfaces/weapon.hpp')
-rw-r--r--examples/basic/src/interfaces/weapon.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/basic/src/interfaces/weapon.hpp b/examples/basic/src/interfaces/weapon.hpp
index 7404115..78e4f42 100644
--- a/examples/basic/src/interfaces/weapon.hpp
+++ b/examples/basic/src/interfaces/weapon.hpp
@@ -1,9 +1,10 @@
#pragma once
+// NOLINTNEXTLINE(cppcoreguidelines-special-member-functions)
class IWeapon
{
public:
virtual ~IWeapon() noexcept = default;
- virtual int get_strength() const noexcept = 0;
+ [[nodiscard]] virtual auto get_strength() const noexcept -> int = 0;
};