Skip to content
Snippets Groups Projects
Commit d6b6a867 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MeL] Remove default ElementErrorCode ctor/dtor.

Those are automatically generated.
parent 18c6b48b
No related branches found
No related tags found
No related merge requests found
...@@ -34,12 +34,6 @@ enum class ElementErrorFlag ...@@ -34,12 +34,6 @@ enum class ElementErrorFlag
class ElementErrorCode : public std::bitset<static_cast<std::size_t>(ElementErrorFlag::MaxValue)> class ElementErrorCode : public std::bitset<static_cast<std::size_t>(ElementErrorFlag::MaxValue)>
{ {
public: public:
ElementErrorCode() {}
//ElementErrorCode(std::bitset< static_cast<std::size_t>(ElementErrorFlag::MaxValue) > error_flags)
// : _errors(error_flags) {}
~ElementErrorCode() {}
/// Get value for a specific flag /// Get value for a specific flag
bool get(ElementErrorFlag e) const { return test(static_cast<std::size_t>(e)); } bool get(ElementErrorFlag e) const { return test(static_cast<std::size_t>(e)); }
/// Set a specific flag /// Set a specific flag
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment