fix clang-format error for ci (#1036)

* fix clang-format error for ci

* update
This commit is contained in:
dota17
2019-10-02 03:54:07 +08:00
committed by Jordan Bayles
parent 7e97345e26
commit 736409f1b5
4 changed files with 18 additions and 22 deletions

View File

@@ -1551,16 +1551,15 @@ Value::iterator Value::end() {
// class PathArgument
// //////////////////////////////////////////////////////////////////
PathArgument::PathArgument() {}
PathArgument::PathArgument() {}
PathArgument::PathArgument(ArrayIndex index)
: index_(index), kind_(kindIndex) {}
: index_(index), kind_(kindIndex) {}
PathArgument::PathArgument(const char* key)
: key_(key), kind_(kindKey) {}
PathArgument::PathArgument(const char* key) : key_(key), kind_(kindKey) {}
PathArgument::PathArgument(const String& key)
: key_(key.c_str()), kind_(kindKey) {}
: key_(key.c_str()), kind_(kindKey) {}
// class Path
// //////////////////////////////////////////////////////////////////