[CodeFormat] Clang-format cpp sources (#4965)

Clang-format all c++ source files.
This commit is contained in:
sduzh
2020-11-28 18:36:49 +08:00
committed by GitHub
parent f944bf4d44
commit 6fedf5881b
1331 changed files with 62548 additions and 68514 deletions

View File

@ -19,14 +19,12 @@
#include <sstream>
#include "util/debug_util.h"
#include "runtime/runtime_state.h"
#include "util/debug_util.h"
namespace doris {
CompoundPredicate::CompoundPredicate(const TExprNode& node) :
Predicate(node) {
}
CompoundPredicate::CompoundPredicate(const TExprNode& node) : Predicate(node) {}
#if 0
Status CompoundPredicate::prepare(RuntimeState* state, const RowDescriptor& desc) {
DCHECK_LE(_children.size(), 2);
@ -34,8 +32,7 @@ Status CompoundPredicate::prepare(RuntimeState* state, const RowDescriptor& desc
}
#endif
void CompoundPredicate::init() {
}
void CompoundPredicate::init() {}
BooleanVal CompoundPredicate::compound_not(FunctionContext* context, const BooleanVal& v) {
if (v.is_null) {
@ -90,4 +87,4 @@ std::string CompoundPredicate::debug_string() const {
return out.str();
}
}
} // namespace doris