aboutsummaryrefslogtreecommitdiff
path: root/odb/qt/containers/qhash-traits.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/qt/containers/qhash-traits.hxx')
-rw-r--r--odb/qt/containers/qhash-traits.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/qt/containers/qhash-traits.hxx b/odb/qt/containers/qhash-traits.hxx
index 6081722..57b072e 100644
--- a/odb/qt/containers/qhash-traits.hxx
+++ b/odb/qt/containers/qhash-traits.hxx
@@ -45,7 +45,7 @@ namespace odb
key_type k;
value_type v;
more = f.load_all (k, v);
- c.insert (k, v);
+ c.insert (k, v); // @@ Use std::move in C++11.
}
}
@@ -101,7 +101,7 @@ namespace odb
key_type k;
value_type v;
more = f.load_all (k, v);
- c.insert (k, v);
+ c.insert (k, v); //@@ Use std::move in C++11.
}
}