summaryrefslogtreecommitdiff
path: root/tools/streaming_proto/stream_proto_utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/streaming_proto/stream_proto_utils.cpp')
-rw-r--r--tools/streaming_proto/stream_proto_utils.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/streaming_proto/stream_proto_utils.cpp b/tools/streaming_proto/stream_proto_utils.cpp
index e8f86bc0be83..fb2d98d45b0e 100644
--- a/tools/streaming_proto/stream_proto_utils.cpp
+++ b/tools/streaming_proto/stream_proto_utils.cpp
@@ -13,8 +13,6 @@ const uint64_t FIELD_TYPE_SHIFT = 32;
// TODO: packed is not supported yet.
//
const uint64_t FIELD_COUNT_SHIFT = 40;
-const uint64_t FIELD_COUNT_MASK = 0x0fULL << FIELD_COUNT_SHIFT;
-const uint64_t FIELD_COUNT_UNKNOWN = 0;
const uint64_t FIELD_COUNT_SINGLE = 1ULL << FIELD_COUNT_SHIFT;
const uint64_t FIELD_COUNT_REPEATED = 2ULL << FIELD_COUNT_SHIFT;
const uint64_t FIELD_COUNT_PACKED = 5ULL << FIELD_COUNT_SHIFT;