mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
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:
@@ -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;
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
class classA {
|
||||
public:
|
||||
classA() { setProp("useless", 10); }
|
||||
~classA() {}
|
||||
~classA() = default;
|
||||
|
||||
void printA() const {
|
||||
if (hasProp("useless")) {
|
||||
|
||||
@@ -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")) {
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
class classA {
|
||||
public:
|
||||
classA() { setProp("useless", 10); }
|
||||
~classA() {}
|
||||
~classA() = default;
|
||||
|
||||
void printA() const {
|
||||
if (hasProp("useless")) {
|
||||
|
||||
@@ -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")) {
|
||||
|
||||
Reference in New Issue
Block a user