Skip to content

Commit 906ea4e

Browse files
committed
clang-format
1 parent 243b4a5 commit 906ea4e

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
@@ -643,7 +643,8 @@ void Converter::EmitRustStructOrUnion(clang::RecordDecl *decl) {
643643
auto access = clang::dyn_cast<clang::CXXRecordDecl>(decl)
644644
? AccessSpecifierAsString(decl->getAccess())
645645
: keyword::kPub;
646-
StrCat(access, decl->isUnion() ? keyword::kUnion : keyword::kStruct, GetRecordName(decl));
646+
StrCat(access, decl->isUnion() ? keyword::kUnion : keyword::kStruct,
647+
GetRecordName(decl));
647648
{
648649
PushBrace brace(*this);
649650
for (auto *field : decl->fields()) {

0 commit comments

Comments
 (0)