Skip to content

Commit

Permalink
fixed Performance::values()
Browse files Browse the repository at this point in the history
  • Loading branch information
fasiondog committed Mar 8, 2024
1 parent 9cf6152 commit 5300233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hikyuu_cpp/hikyuu/trade_manage/Performance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ PriceList Performance::values() const {
PriceList result(m_result.size());
size_t i = 0;
for (const auto& key : m_keys) {
result[i] = m_result.at(key);
result[i++] = m_result.at(key);
}
return result;
}
Expand Down

0 comments on commit 5300233

Please sign in to comment.