Skip to content

Commit

Permalink
def parser: fixing clang-tidy copy warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Felipe Garay <[email protected]>
  • Loading branch information
fgaray committed May 22, 2024
1 parent 3fa440a commit 4758cb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/odb/src/defout/defout_impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,11 @@ const char* defOrient(dbOrientType orient)
return "N";
}

const char* defSigType(dbSigType type)
const char* defSigType(const dbSigType& type)
{
return type.getString();
}
const char* defIoType(dbIoType type)
const char* defIoType(const dbIoType& type)
{
return type.getString();
}
Expand Down

0 comments on commit 4758cb6

Please sign in to comment.