Commit 334461b4 authored by Sergey Kosarevsky's avatar Sergey Kosarevsky

Added Hasher::Number()

parent eeb13bdb
......@@ -183,6 +183,11 @@ public:
return WriteNumber(n);
}
bool Number(const Ch* str, SizeType len, bool) {
WriteBuffer(kNumberType, str, len * sizeof(Ch));
return true;
}
bool String(const Ch* str, SizeType len, bool) {
WriteBuffer(kStringType, str, len * sizeof(Ch));
return true;
......
Markdown is supported
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