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

@@ -17,7 +17,7 @@ class EnumException : public std::exception {
EnumException(const char *msg) : _msg(msg) {}
EnumException(const std::string msg) : _msg(msg) {}
const char *what() const noexcept override { return _msg.c_str(); }
~EnumException() noexcept {}
~EnumException() noexcept = default;
private:
std::string _msg;

View File

@@ -17,7 +17,7 @@
class classA {
public:
classA() { setProp("useless", 10); }
~classA() {}
~classA() = default;
void printA() const {
if (hasProp("useless")) {

View File

@@ -21,7 +21,7 @@ typedef std::vector<STR_INT> PAIR_VECT;
class classC {
public:
classC() { setProp("useless", 10); }
~classC() {}
~classC() = default;
void printC() const {
if (hasProp("useless")) {

View File

@@ -17,7 +17,7 @@
class classA {
public:
classA() { setProp("useless", 10); }
~classA() {}
~classA() = default;
void printA() const {
if (hasProp("useless")) {

View File

@@ -21,7 +21,7 @@ typedef std::vector<STR_INT> PAIR_VECT;
class classC {
public:
classC() { setProp("useless", 10); }
~classC() {}
~classC() = default;
void printC() const {
if (hasProp("useless")) {