Skip to content

Commit 399f0d1

Browse files
committed
clang-format
1 parent 0ab60b4 commit 399f0d1

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

cpp2rust/converter/converter.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1397,7 +1397,8 @@ void Converter::ConvertGenericCallExpr(clang::CallExpr *expr) {
13971397
StrCat(token::kOpenParen);
13981398
StrCat(keyword_unsafe_);
13991399
StrCat(token::kOpenCurlyBracket);
1400-
const auto *function = expr->getCalleeDecl() ? expr->getCalleeDecl()->getAsFunction() : nullptr;
1400+
const auto *function =
1401+
expr->getCalleeDecl() ? expr->getCalleeDecl()->getAsFunction() : nullptr;
14011402
const clang::FunctionProtoType *proto = nullptr;
14021403

14031404
if (!function) {

0 commit comments

Comments
 (0)