Skip to content

Commit

Permalink
[DAQ] [LLVM14] Apply clang-tidy and clang-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
smuzaffar committed Apr 26, 2023
1 parent 0c3a8c6 commit 6e4f9dd
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions EventFilter/Utilities/src/json_valueiterator.icc
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,19 @@
//NOLINTNEXTLINE(misc-definitions-in-headers)
ValueIteratorBase::ValueIteratorBase()
#ifndef JSON_VALUE_USE_INTERNAL_MAP
: current_(), isNull_(true) {
}
: current_(),
isNull_(true){}
#else
: isArray_(true), isNull_(true) {
iterator_.array_ = ValueInternalArray::IteratorState();
}
#endif

#ifndef JSON_VALUE_USE_INTERNAL_MAP
//NOLINTNEXTLINE(misc-definitions-in-headers)
ValueIteratorBase::ValueIteratorBase(const Value::ObjectValues::iterator &current)
: current_(current), isNull_(false) {}
//NOLINTNEXTLINE(misc-definitions-in-headers)
ValueIteratorBase::ValueIteratorBase(const Value::ObjectValues::iterator &current)
: current_(current), isNull_(false) {
}
#else
//NOLINTNEXTLINE(misc-definitions-in-headers)
ValueIteratorBase::ValueIteratorBase(const ValueInternalArray::IteratorState &state) : isArray_(true) {
Expand Down

0 comments on commit 6e4f9dd

Please sign in to comment.