mirror of
https://git.suyu.dev/suyu/suyu
synced 2026-03-12 07:11:05 +00:00
Reimplement HardwareOpus
This commit is contained in:
@@ -45,13 +45,13 @@ public:
|
||||
}
|
||||
|
||||
T PopWait() {
|
||||
T t;
|
||||
T t{};
|
||||
Pop<PopMode::Wait>(t);
|
||||
return t;
|
||||
}
|
||||
|
||||
T PopWait(std::stop_token stop_token) {
|
||||
T t;
|
||||
T t{};
|
||||
Pop<PopMode::WaitWithStopToken>(t, stop_token);
|
||||
return t;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user