diff options
| author | Maxime Coste <mawww@kakoune.org> | 2017-01-08 22:30:15 +0000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2017-01-08 22:39:01 +0000 |
| commit | dcd8f6ef0105578e10dc18975871bc59154e008c (patch) | |
| tree | 2e0e2e11d4afcf9c351c3a7dd8c9847b253d3017 /src/buffer.hh | |
| parent | 9dfd17a5bc584a66711707044bdf27ff57e7aebb (diff) | |
Apply clang-tidy modernize to the codebase
Diffstat (limited to 'src/buffer.hh')
| -rw-r--r-- | src/buffer.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.hh b/src/buffer.hh index 4db6f32a..c30f93f9 100644 --- a/src/buffer.hh +++ b/src/buffer.hh @@ -10,7 +10,7 @@ #include "value.hh" #include "vector.hh" -#include <time.h> +#include <ctime> namespace Kakoune { @@ -118,7 +118,7 @@ public: timespec fs_timestamp = InvalidTime); Buffer(const Buffer&) = delete; Buffer& operator= (const Buffer&) = delete; - ~Buffer(); + ~Buffer() override; Flags flags() const { return m_flags; } Flags& flags() { return m_flags; } |
