diff options
Diffstat (limited to 'QA')
-rw-r--r-- | QA/Checker/IO.cpp | 8 | ||||
-rw-r--r-- | QA/Checker/IO.h | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/QA/Checker/IO.cpp b/QA/Checker/IO.cpp index d9eadd6..41fe5d3 100644 --- a/QA/Checker/IO.cpp +++ b/QA/Checker/IO.cpp @@ -6,6 +6,7 @@ #include <QA/Checker/IO.h> +#include <algorithm> #include <iostream> std::ostream& operator<<(std::ostream& os, const Swift::ByteArray& s) { @@ -55,3 +56,10 @@ std::ostream& operator<<(std::ostream& os, const std::vector<size_t>& s) { os << std::endl; return os; } + +bool operator==(const Swift::ByteArray& a, const Swift::ByteArray& b) { + if (a.size() != b.size()) { + return false; + } + return std::equal(a.begin(), a.end(), b.begin()); +} diff --git a/QA/Checker/IO.h b/QA/Checker/IO.h index 2545d24..3e40f7e 100644 --- a/QA/Checker/IO.h +++ b/QA/Checker/IO.h @@ -10,6 +10,7 @@ #include <Swiften/Base/SafeByteArray.h> std::ostream& operator<<(std::ostream& os, const Swift::ByteArray& s); +bool operator==(const Swift::ByteArray& a, const Swift::ByteArray& b); std::ostream& operator<<(std::ostream& os, const Swift::SafeByteArray& s); std::ostream& operator<<(std::ostream& os, const std::vector<int>& s); std::ostream& operator<<(std::ostream& os, const std::vector<size_t>& s); |