Skip to content

Commit

Permalink
Fixed unused var in Manager
Browse files Browse the repository at this point in the history
  • Loading branch information
COM8 committed Jul 31, 2022
1 parent 2e3f978 commit 23677a8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,13 @@ debugMessageCallback(VkDebugReportFlagsEXT /*flags*/,
uint64_t /*object*/,
size_t /*location*/,
int32_t /*messageCode*/,
#if KOMPUTE_OPT_ACTIVE_LOG_LEVEL <= KOMPUTE_LOG_LEVEL_DEBUG
const char* pLayerPrefix,
const char* pMessage,
#else
const char* /*pLayerPrefix*/,
const char* /*pMessage*/,
#endif
void* /*pUserData*/)
{
KP_LOG_DEBUG("[VALIDATION]: {} - {}", pLayerPrefix, pMessage);
Expand Down

0 comments on commit 23677a8

Please sign in to comment.