Skip to content
Snippets Groups Projects
Commit 2724bad2 authored by ilor's avatar ilor
Browse files

fix tag's raw dump

parent b7bb1239
Branches
No related merge requests found
......@@ -31,8 +31,8 @@ std::string Tag::raw_dump() const
std::bitset<sizeof(mask_t) * CHAR_BIT> binaryp(pos_);
std::bitset<sizeof(mask_t) * CHAR_BIT> binaryv(values_);
//ss << static_cast<int>(tagset_id_);
ss << "#" << binaryp;
ss << ":" << binaryv;
ss << "" << pos_;
ss << ":" << values_;
ss << "]";
return ss.str();
}
......
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