Skip to content

Commit

Permalink
ARBSTCL-351 Fix unused variables warning
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrkirilov committed Nov 6, 2023
1 parent 1b3246d commit 9ad4a7f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions UsersHandler/ausershandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,8 @@ void AUsersHandler::slInitiated(void) {

AUsersHandlerReply AUsersHandler::mSetCurrentHandler(QString inID) {

Q_UNUSED(inID)

AUsersHandlerReply oOutput;
return oOutput;
}
Expand All @@ -167,6 +169,8 @@ AUsersHandlerReply AUsersHandler::mSetCurrentHandler(QString inID) {

AUsersHandlerReply AUsersHandler::mCreateHandler(AUsersHandlerUserData inUserData) {

Q_UNUSED(inUserData)

_A_DEBUG << "Create user: 2";

AUsersHandlerReply oOutput;
Expand Down

0 comments on commit 9ad4a7f

Please sign in to comment.