diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2012-09-04 00:17:41 +0200 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2012-09-04 00:17:41 +0200 |
| commit | 11d5ae27434a5e36f6500b60a785b86261da6554 (patch) | |
| tree | 9edce411a20f72cf6b6f71a829ed62096f9a3597 /src/exception.hh | |
| parent | 0e6ced91764764d26b9f7a8550782c1940d07ac9 (diff) | |
add override markers
Diffstat (limited to 'src/exception.hh')
| -rw-r--r-- | src/exception.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exception.hh b/src/exception.hh index 5aab02f6..0b68d39e 100644 --- a/src/exception.hh +++ b/src/exception.hh @@ -17,7 +17,7 @@ struct runtime_error : exception runtime_error(const String& description) : m_description(description) {} - String description() const { return m_description; } + String description() const override { return m_description; } private: String m_description; |
