Skip to content

Commit

Permalink
resolve lint
Browse files Browse the repository at this point in the history
  • Loading branch information
oraluben authored Oct 27, 2024
1 parent d77f747 commit 9bbc3a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libkineto/src/CuptiCallbackApi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ void CuptiCallbackApi::__callback_switchboard(

std::shared_ptr<CuptiCallbackApi> CuptiCallbackApi::singleton() {
static const std::shared_ptr<CuptiCallbackApi> instance = [] {
std::shared_ptr<CuptiCallbackApi> inst = std::make_shared<CuptiCallbackApi>();
std::shared_ptr<CuptiCallbackApi> inst =
std::make_shared<CuptiCallbackApi>();
return inst;
}();
return instance;
Expand Down

0 comments on commit 9bbc3a1

Please sign in to comment.