We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ab60b4 commit 399f0d1Copy full SHA for 399f0d1
1 file changed
cpp2rust/converter/converter.cpp
@@ -1397,7 +1397,8 @@ void Converter::ConvertGenericCallExpr(clang::CallExpr *expr) {
1397
StrCat(token::kOpenParen);
1398
StrCat(keyword_unsafe_);
1399
StrCat(token::kOpenCurlyBracket);
1400
- const auto *function = expr->getCalleeDecl() ? expr->getCalleeDecl()->getAsFunction() : nullptr;
+ const auto *function =
1401
+ expr->getCalleeDecl() ? expr->getCalleeDecl()->getAsFunction() : nullptr;
1402
const clang::FunctionProtoType *proto = nullptr;
1403
1404
if (!function) {
0 commit comments