Skip to content

Commit 28d06aa

Browse files
committed
fix msvc
Signed-off-by: Martijn Govers <[email protected]>
1 parent 3d99233 commit 28d06aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

power_grid_model_c/power_grid_model/include/power_grid_model/job_dispatch.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class JobDispatch {
7878
static auto scenario_exception_handler(std::vector<std::string>& messages) {
7979
return [&messages](Idx scenario_idx) -> void {
8080
assert(0 <= scenario_idx);
81-
assert(scenario_idx < messages.ssize());
81+
assert(scenario_idx < std::ssize(messages));
8282

8383
std::exception_ptr const ex_ptr = std::current_exception();
8484
try {

0 commit comments

Comments
 (0)