[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

@ -16,15 +16,14 @@
// under the License.
#ifdef IR_COMPILE
#include "runtime/string_value.hpp"
#include "codegen/doris_ir.h"
#include "runtime/string_value.hpp"
namespace doris {
int ir_string_compare(const char* s1, int n1, const char* s2, int n2) {
return string_compare(s1, n1, s2, n2, std::min(n1, n2));
}
}
} // namespace doris
#else
#error "This file should only be used for cross compiling to IR."
#endif