Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions concore.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,7 @@ class Concore{
outfile<<val[i]<<',';
outfile<<val[val.size()-1]<<']';
outfile.close();
simtime += delta;
}
else{
throw 505;
Expand Down Expand Up @@ -506,6 +507,7 @@ class Concore{
outfile<<val[val.size()-1]<<']';
std::string result = outfile.str();
std::strncpy(sharedData_create, result.c_str(), 256 - 1);
simtime += delta;
}
else{
throw 505;
Expand Down
Loading