Commit 56477115 authored by beder's avatar beder
Browse files

Added != for Binary

parent 2731f862
......@@ -48,6 +48,10 @@ namespace YAML
return true;
}
bool operator != (const Binary& rhs) const {
return !(*this == rhs);
}
private:
std::vector<unsigned char> m_data;
const unsigned char *m_unownedData;
......
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