Skip to content

Commit 2768326

Browse files
committed
Remove {} around single statement
1 parent e86ac03 commit 2768326

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/Frontend/OpenMP/DirectiveNameParser.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,8 @@ void DirectiveNameParser::insertName(StringRef Name, Directive D) {
5656
DirectiveNameParser::State *
5757
DirectiveNameParser::insertTransition(State *From, StringRef Tok) {
5858
assert(From && "Expecting state");
59-
if (!From->Transition) {
59+
if (!From->Transition)
6060
From->Transition = std::make_unique<State::TransitionMapTy>();
61-
}
6261
if (State *Next = From->next(Tok))
6362
return Next;
6463

0 commit comments

Comments
 (0)