[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,15 +19,12 @@
namespace doris {
EmptySetNode::EmptySetNode(ObjectPool* pool, const TPlanNode& tnode,
const DescriptorTbl& descs)
: ExecNode(pool, tnode, descs) {
}
EmptySetNode::EmptySetNode(ObjectPool* pool, const TPlanNode& tnode, const DescriptorTbl& descs)
: ExecNode(pool, tnode, descs) {}
Status EmptySetNode::get_next(RuntimeState* state, RowBatch* row_batch, bool* eos) {
*eos = true;
return Status::OK();
}
*eos = true;
return Status::OK();
}
} // namespace doris