From 2724bad2abb2fda772ba5989da777650228d2453 Mon Sep 17 00:00:00 2001 From: ilor <kailoran@gmail.com> Date: Thu, 21 Oct 2010 17:19:00 +0200 Subject: [PATCH] fix tag's raw dump --- libcorpus2/tag.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libcorpus2/tag.cpp b/libcorpus2/tag.cpp index dd62133..945b596 100644 --- a/libcorpus2/tag.cpp +++ b/libcorpus2/tag.cpp @@ -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(); } -- GitLab