Skip to content

Commit be77877

Browse files
committed
[ur] fix ctad-maybe-unsupported warning
that appeared on intel/llvm CI
1 parent 5b4c3d2 commit be77877

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/common/logger/ur_sinks.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class Sink {
2828

2929
format(buffer, fmt, std::forward<Args &&>(args)...);
3030

31-
std::scoped_lock lock(output_mutex);
31+
std::scoped_lock<std::mutex> lock(output_mutex);
3232
*ostream << buffer.str();
3333
if (level >= flush_level) {
3434
ostream->flush();

0 commit comments

Comments
 (0)