mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-10-27 14:31:20 +00:00
Added != for Binary
This commit is contained in:
@@ -48,6 +48,10 @@ namespace YAML
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool operator != (const Binary& rhs) const {
|
||||||
|
return !(*this == rhs);
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::vector<unsigned char> m_data;
|
std::vector<unsigned char> m_data;
|
||||||
const unsigned char *m_unownedData;
|
const unsigned char *m_unownedData;
|
||||||
|
|||||||
Reference in New Issue
Block a user