Skip to content

Commit

Permalink
Error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhjp01 committed Nov 16, 2024
1 parent 4ec6c32 commit 7a27b47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cosim/slave_simulator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ class set_variable_cache
references_filtered_.clear();
values_filtered_.clear();

for (int i = 0; i < references_.size(); i++) {
for (size_t i = 0; i < references_.size(); i++) {
auto& ref = references_.at(i);
if ((*filter)(ref)) {
references_filtered_.push_back(ref);
Expand Down

0 comments on commit 7a27b47

Please sign in to comment.