mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-06 10:26:29 +08:00
Correct formatting
Signed-off-by: Filip Hazubski <filip.hazubski@intel.com>
This commit is contained in:
committed by
Compute-Runtime-Automation
parent
264f20ea00
commit
9a8125cdb0
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (C) 2017-2020 Intel Corporation
|
||||
* Copyright (C) 2017-2021 Intel Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: MIT
|
||||
*
|
||||
@@ -78,7 +78,7 @@ class ConditionVariableWithCounter {
|
||||
waitersCount = 0;
|
||||
}
|
||||
template <typename... Args>
|
||||
void wait(Args &&... args) {
|
||||
void wait(Args &&...args) {
|
||||
++waitersCount;
|
||||
cond.wait(std::forward<Args>(args)...);
|
||||
--waitersCount;
|
||||
|
||||
Reference in New Issue
Block a user