diff options
author | Roland Reichwein <mail@reichwein.it> | 2020-11-16 12:48:44 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2020-11-16 12:48:44 +0100 |
commit | c9cb051fae190acfc36813e4a23759fb9b9c3df3 (patch) | |
tree | fcd8c93cd5dc2a3272eac253b0291611e16ea13f /minicc.h | |
parent | 300219dc8519720a36525c7b40c6a327580fe0bd (diff) |
Implement hierarchical evaluation (WIP)
Diffstat (limited to 'minicc.h')
-rw-r--r-- | minicc.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -51,3 +51,6 @@ struct PairHashSS { }; std::string demangle(const std::type_info& type); + +std::vector<uint8_t> to_little_endian(uint32_t value); +uint32_t from_little_endian(const std::vector<uint8_t>& value); |