Tidy return parameter usage a little within the EightBit library.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2018-11-29 00:09:40 +00:00
parent deb9a6d43c
commit 9960ad6012
14 changed files with 189 additions and 172 deletions

View File

@@ -6,6 +6,6 @@ namespace EightBit {
static EventArgs m_empty;
public:
static auto& empty() noexcept { return m_empty; }
[[nodiscard]] static auto& empty() noexcept { return m_empty; }
};
}