File tree Expand file tree Collapse file tree 2 files changed +1
-9
lines changed
features/frameworks/utest Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ namespace
36
36
37
37
const Case *case_current = NULL ;
38
38
size_t case_index = 0 ;
39
- control_t case_control = control_t ( REPEAT_SETUP_TEARDOWN) ;
39
+ base_control_t case_control = { REPEAT_SETUP_TEARDOWN, TIMEOUT_UNDECLR } ;
40
40
size_t case_repeat_count = 1 ;
41
41
42
42
void *case_timeout_handle = NULL ;
Original file line number Diff line number Diff line change @@ -207,14 +207,6 @@ namespace v1 {
207
207
return timeout;
208
208
}
209
209
210
- operator base_control_t () const {
211
- base_control_t result = {
212
- repeat,
213
- timeout
214
- };
215
- return result;
216
- }
217
-
218
210
private:
219
211
static base_control_t make_base_control_t (repeat_t repeat, uint32_t timeout) {
220
212
base_control_t result = {
You can’t perform that action at this time.
0 commit comments