diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-02-01 09:19:05 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-02-01 09:19:05 +0200 |
commit | de7114c75da1584189149afd98a3485be662d319 (patch) | |
tree | fe6e0b27c988f0788e831db72a6e39384d56b275 | |
parent | 101c769144f4351388085917225ede383bebfb07 (diff) |
Cosmetic changes
-rw-r--r-- | odb/tr1/lazy-pointer-traits.hxx | 4 | ||||
-rw-r--r-- | odb/tr1/pointer-traits.hxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/odb/tr1/lazy-pointer-traits.hxx b/odb/tr1/lazy-pointer-traits.hxx index 2cb2277..bdbfbfe 100644 --- a/odb/tr1/lazy-pointer-traits.hxx +++ b/odb/tr1/lazy-pointer-traits.hxx @@ -14,7 +14,7 @@ namespace odb { template <typename T> - class pointer_traits< tr1::lazy_shared_ptr<T> > + class pointer_traits<tr1::lazy_shared_ptr<T> > { public: static pointer_kind const kind = pk_shared; @@ -39,7 +39,7 @@ namespace odb }; template <typename T> - class pointer_traits< tr1::lazy_weak_ptr<T> > + class pointer_traits<tr1::lazy_weak_ptr<T> > { public: static pointer_kind const kind = pk_weak; diff --git a/odb/tr1/pointer-traits.hxx b/odb/tr1/pointer-traits.hxx index 000c0d2..431685e 100644 --- a/odb/tr1/pointer-traits.hxx +++ b/odb/tr1/pointer-traits.hxx @@ -20,7 +20,7 @@ namespace odb // Specialization for std::tr1::shared_ptr. // template <typename T> - class pointer_traits< std::tr1::shared_ptr<T> > + class pointer_traits<std::tr1::shared_ptr<T> > { public: static pointer_kind const kind = pk_shared; @@ -66,7 +66,7 @@ namespace odb // Specialization for std::tr1::weak_ptr. // template <typename T> - class pointer_traits< std::tr1::weak_ptr<T> > + class pointer_traits<std::tr1::weak_ptr<T> > { public: static pointer_kind const kind = pk_weak; |