提交 4521d661 编写于 作者: T TolyaTalamanov

Remove r-value ref

上级 ec92f3fe
......@@ -193,7 +193,7 @@ CallParams read<CallParams>(const cv::FileNode& fn) {
template <typename V>
std::map<std::string, V> readMap(const cv::FileNode& fn) {
std::map<std::string, V> map;
for (auto&& item : fn) {
for (auto item : fn) {
map.emplace(item.name(), read<V>(item));
}
return map;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册