try minimal example

parent 83c005f8
...@@ -77,7 +77,6 @@ struct position_t ...@@ -77,7 +77,6 @@ struct position_t
} }
}; };
class exception : public std::exception class exception : public std::exception
{ {
public: public:
...@@ -86,7 +85,7 @@ class exception : public std::exception ...@@ -86,7 +85,7 @@ class exception : public std::exception
return m.what(); return m.what();
} }
const int id; const int id; // NOLINT(cppcoreguidelines-non-private-member-variables-in-classes)
protected: protected:
exception(int id_, const char* what_arg) : id(id_), m(what_arg) {} exception(int id_, const char* what_arg) : id(id_), m(what_arg) {}
...@@ -123,7 +122,7 @@ class parse_error : public exception ...@@ -123,7 +122,7 @@ class parse_error : public exception
} }
}; };
} // namespace detail } // namespace detail2
} // namespace nlohmann } // namespace nlohmann
// //
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment