Skip to content

Commit

Permalink
Merge pull request #2084 from jwillemsen/jwi-taoidlcast
Browse files Browse the repository at this point in the history
Removed redundant c-style cast
  • Loading branch information
jwillemsen authored Jun 23, 2023
2 parents a5c5e60 + 8640c0b commit 90c46e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TAO/TAO_IDL/be/be_scope.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ be_scope::decl ()
case AST_Decl::NT_finder:
return dynamic_cast<be_finder*> (this);
default:
return (be_decl *)nullptr;
return nullptr;
}
}

Expand Down

0 comments on commit 90c46e2

Please sign in to comment.