Skip to content

Commit

Permalink
Squashing two CI/CD errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Wee-Free-Scot authored and kbenzie committed Feb 13, 2024
1 parent d5d9a3c commit 49b09e0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion source/loader/ur_lib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
// avoids windows.h from defining macros for min and max
// which avoids playing havoc with std::min and std::max
// (not quite sure why windows.h is being included here)
#ifndef NOMINMAX
#define NOMINMAX
#endif // !NOMINMAX

#include "ur_lib.hpp"
#include "logger/ur_logger.hpp"
Expand Down Expand Up @@ -457,7 +459,8 @@ ur_result_t urDeviceGetSelected(ur_platform_handle_t hPlatform,
std::tolower(static_cast<unsigned char>(b));
})) {
// irrelevant term for current request: different backend -- silently ignore
logger::warning("WARNING: ignoring term with irrelevant backend '{}'", backend);
logger::warning(
"WARNING: ignoring term with irrelevant backend '{}'", backend);
continue;
}
if (termPair.second.size() == 0) {
Expand Down

0 comments on commit 49b09e0

Please sign in to comment.