Run clang format

Clang format hasn't been run on some recent checkins. This patch updates
the repository with clang format properly run on all files.
This commit is contained in:
Jordan Bayles
2019-06-24 14:06:45 -07:00
parent f7182a0fdc
commit d5bd1a7716
4 changed files with 16 additions and 15 deletions

View File

@@ -612,7 +612,9 @@ Json::Value obj_value(Json::objectValue); // {}
ptrdiff_t getOffsetLimit() const;
private:
void setType(ValueType v) { bits_.value_type_ = static_cast<unsigned char> (v); }
void setType(ValueType v) {
bits_.value_type_ = static_cast<unsigned char>(v);
}
bool isAllocated() const { return bits_.allocated_; }
void setIsAllocated(bool v) { bits_.allocated_ = v; }