Skip to content

Commit

Permalink
Restyled by clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
restyled-commits authored and andreilitvin committed Jun 8, 2023
1 parent 493d1a1 commit 6579f80
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/chip-tool/commands/common/Command.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,8 @@ bool Command::InitArgument(size_t argIndex, char * argValue)
chip::StringSplitter splitter(argValue, ',');
chip::CharSpan value;

while (splitter.Next(value)) {
while (splitter.Next(value))
{
vectorArgument.push_back(std::string(value.data(), value.size()));
}

Expand Down

0 comments on commit 6579f80

Please sign in to comment.