We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38aaaa3 commit 4cbb508Copy full SHA for 4cbb508
auto_tests/toxav_mt_test.cc
@@ -145,7 +145,8 @@ std::vector<Tox_Ptr> prepare_network(uint32_t count) {
145
146
class AV_State {
147
public:
148
- explicit AV_State(Tox_Ptr tox, std::string name, bool combined = false) noexcept
+ AV_State() = delete;
149
+ explicit AV_State(Tox_Ptr tox, std::string name, bool combined = false)
150
: tox_(std::move(tox)),
151
combined_av_(combined),
152
stop_threads_{false},
@@ -362,7 +363,7 @@ class AV_State {
362
363
std::atomic_bool incomming_;
364
std::atomic_uint32_t call_state_;
365
- std::atomic<Time_Point> call_start_{};
366
+ std::atomic<Time_Point> call_start_{Time_Point()};
367
std::atomic_bool in_call_;
368
369
std::atomic_bool video_received_;
0 commit comments