From 4e53aa8cf928a078cccc9d08764735fd9c636b25 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 6 Feb 2015 09:14:47 +0200 Subject: Add support for persisting std::deque --- NEWS | 2 ++ doc/manual.xhtml | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 896c161..497150b 100644 --- a/NEWS +++ b/NEWS @@ -38,6 +38,8 @@ Version 2.4.0 equivalent for database systems that support it). For details, refer to Section 10.5, "View Query Conditions" in the ODB manual. + * Support for persisting std::deque containers. + * Besides odb::stderr_tracer there is now odb::stderr_full_tracer that traces statement preparations and deallocations in addition to their executions. This new implementation can be useful when you want to diff --git a/doc/manual.xhtml b/doc/manual.xhtml index fce5302..8255f5c 100644 --- a/doc/manual.xhtml +++ b/doc/manual.xhtml @@ -5778,8 +5778,8 @@ db.query_factory (

The ODB runtime library provides built-in persistence support for all the commonly used standard C++98/03 containers, namely, - std::vector, std::list, std::set, - std::multiset, std::map, and + std::vector, std::list, std::deque, + std::set, std::multiset, std::map, and std::multimap as well as C++11 std::array, std::forward_list, std::unordered_set, std::unordered_multiset, std::unordered_map, @@ -5876,7 +5876,7 @@ private:

In ODB an ordered container is any container that maintains (explicitly or implicitly) an order of its elements in the form of an integer index. Standard C++ containers that are ordered include std::vector - and std::list as well as C++11 std::array and + std::list, and std::deque as well as C++11 std::array and std::forward_list. While elements in std::set are also kept in a specific order, this order is not based on an integer index but rather on the relationship between elements. As -- cgit v1.1