From 88b5d11da136b8e827536b85e070e7e914e39506 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 17 Nov 2010 17:57:52 +0200 Subject: Use complete list of template parameters for container specializations --- odb/std-set-traits.hxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'odb/std-set-traits.hxx') diff --git a/odb/std-set-traits.hxx b/odb/std-set-traits.hxx index 0c8071a..87213f7 100644 --- a/odb/std-set-traits.hxx +++ b/odb/std-set-traits.hxx @@ -14,14 +14,14 @@ namespace odb { - template - class access::container_traits > + template + class access::container_traits > { public: static container_kind const kind = ck_set; + typedef std::set container_type; typedef V value_type; - typedef std::set container_type; typedef set_functions functions; @@ -68,14 +68,14 @@ namespace odb // changes that. The current implementation in the generated code does // not guarantee this either. // - template - class access::container_traits > + template + class access::container_traits > { public: static container_kind const kind = ck_multiset; + typedef std::multiset container_type; typedef V value_type; - typedef std::multiset container_type; typedef set_functions functions; -- cgit v1.1