Lots of work on debugging diff xmit

This commit is contained in:
2021-11-21 13:35:39 -05:00
parent 0881e33c6f
commit b19825aaca
23 changed files with 338 additions and 99 deletions

View File

@@ -31,6 +31,7 @@ enum MessageType {
using StringVec = std::vector<std::string>;
using StringPair = std::pair<std::string, std::string>;
using StringSet = std::set<std::string>;
using LuaSourceVec = std::vector<StringPair>;
using LuaSourcePtr = std::unique_ptr<LuaSourceVec>;
using HashValue = std::pair<uint64_t, uint64_t>;
@@ -127,6 +128,12 @@ class hex32 {};
class hex16 {};
class hex8 {};
class NullStreamBuffer : public std::streambuf
{
public:
int overflow(int c) { return c; }
};
} // namespace util
std::ostream &operator<<(std::ostream &oss, const util::hex64 &v);