"src/vscode:/vscode.git/clone" did not exist on "93604c3fa7653cc75d2e472d52a2c2dc04bd855c"
Commit 56477115 authored by beder's avatar beder
Browse files

Added != for Binary

parent 2731f862
...@@ -48,6 +48,10 @@ namespace YAML ...@@ -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;
......
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