Fixed not being able to assign to bool list.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -53,5 +53,13 @@ TEST_CASE("Create const List, iterate over values", "[Utilities]") {
|
||||
}
|
||||
}
|
||||
|
||||
TEST_CASE("Create list of bools, assign to it", "[Utilities]") {
|
||||
auto ls = List<bool>({false, false, false});
|
||||
|
||||
ls[1] = true;
|
||||
CHECK(ls[1]);
|
||||
}
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user