miscellaneous updates (#4284)

* Remove accidentally tracked files and unset x flag

* Ignore ComicNeue

* Unify test tag to `reader`

* Trivial destructors

* Bump CMAKE_CXX_STANDARD to 14 (#4165)
This commit is contained in:
Eisuke Kawashima
2021-07-13 13:57:29 +09:00
committed by GitHub
parent 4451bcde67
commit b9a5be5a2d
74 changed files with 75 additions and 88 deletions

View File

@@ -72,7 +72,7 @@ class Vector {
d_data.reset(data);
}
~Vector() {}
~Vector() = default;
//! return the size (dimension) of the vector
unsigned int size() const { return d_size; }