diff options
author | HampusM <hampus@hampusmat.com> | 2022-06-09 17:10:32 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-06-09 17:10:32 +0200 |
commit | a5d218fd1a7e842b7ea4ac7809b0ba89856a5205 (patch) | |
tree | 77021d322f45a2b1d17bc79dc6189df1562ba2ea /examples/basic/src/enemy.cpp | |
parent | 58762e6e029d71ed72b094ec2d5831b6cac4e27b (diff) |
docs: fix basic example code style
Diffstat (limited to 'examples/basic/src/enemy.cpp')
-rw-r--r-- | examples/basic/src/enemy.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/basic/src/enemy.cpp b/examples/basic/src/enemy.cpp index 3923794..60bd98b 100644 --- a/examples/basic/src/enemy.cpp +++ b/examples/basic/src/enemy.cpp @@ -2,7 +2,7 @@ Enemy::Enemy(int health) noexcept : _health(health) {} -int Enemy::get_health() const noexcept +auto Enemy::get_health() const noexcept -> int { return _health; } |