File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/lib/iamtheburd/lazy-cartesian-product Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,19 +37,19 @@ namespace errors
37
37
{
38
38
struct index_error : public runtime_error
39
39
{
40
- index_error::index_error (): runtime_error(" The given index cannot be out of range" ) {}
40
+ index_error (): runtime_error(" The given index cannot be out of range" ) {}
41
41
};
42
42
struct empty_list_error : public runtime_error
43
43
{
44
- empty_list_error::empty_list_error (): runtime_error(" The given list of combinations cannot be empty" ) {}
44
+ empty_list_error (): runtime_error(" The given list of combinations cannot be empty" ) {}
45
45
};
46
46
struct empty_answers_error : public runtime_error
47
47
{
48
- empty_answers_error::empty_answers_error (): runtime_error(" The given list of answers cannot be empty" ) {}
48
+ empty_answers_error (): runtime_error(" The given list of answers cannot be empty" ) {}
49
49
};
50
50
struct invalid_sample_size_error : public runtime_error
51
51
{
52
- invalid_sample_size_error::invalid_sample_size_error (): runtime_error(" The given sample size cannot be out of range" ) {}
52
+ invalid_sample_size_error (): runtime_error(" The given sample size cannot be out of range" ) {}
53
53
};
54
54
}
55
55
}
You can’t perform that action at this time.
0 commit comments