aboutsummaryrefslogtreecommitdiff
path: root/odb/qt/containers/qmap-traits.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'odb/qt/containers/qmap-traits.hxx')
-rw-r--r--odb/qt/containers/qmap-traits.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/qt/containers/qmap-traits.hxx b/odb/qt/containers/qmap-traits.hxx
index b9aed9d..e9c422c 100644
--- a/odb/qt/containers/qmap-traits.hxx
+++ b/odb/qt/containers/qmap-traits.hxx
@@ -46,7 +46,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.
}
}
@@ -102,7 +102,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.
}
}