Skip to content

Commit 198a6e7

Browse files
author
Tyler Burdsall
authored
Merge pull request #3 from iamtheburd/update_lib
Update library to latest version
2 parents 43dc55c + ae898c4 commit 198a6e7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/lib/iamtheburd/lazy-cartesian-product/lazy-cartesian-product.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,19 @@ namespace errors
3737
{
3838
struct index_error: public runtime_error
3939
{
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") {}
4141
};
4242
struct empty_list_error: public runtime_error
4343
{
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") {}
4545
};
4646
struct empty_answers_error: public runtime_error
4747
{
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") {}
4949
};
5050
struct invalid_sample_size_error: public runtime_error
5151
{
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") {}
5353
};
5454
}
5555
}

0 commit comments

Comments
 (0)