Skip to content

Commit

Permalink
Fix clang issue
Browse files Browse the repository at this point in the history
  • Loading branch information
constantinpape committed Feb 17, 2019
1 parent 64ad244 commit 979f5cf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ public:
return edgeOffset_[z];
}

std::size_t serializationSize() const {
std::size_t size = BaseType::serializationSize();
uint64_t serializationSize() const {
uint64_t size = BaseType::serializationSize();
size += 2; // increase by 2 for the fields longRange and ignoreLabel
size += shape_[0] * 2; // increase by slice vector sizes
return size;
Expand Down

0 comments on commit 979f5cf

Please sign in to comment.