aboutsummaryrefslogtreecommitdiff
path: root/common/query/traits.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-11-08 13:40:31 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-11-08 13:40:31 +0200
commit28a08724fc9e2ac494596711990206c64ca36b1d (patch)
tree5f382e92fe0810a5b93522f92f26ea33f179c8d3 /common/query/traits.hxx
parent37a2585ce1d0801bab5d0aba50012c3bcd451739 (diff)
Get rid of custom value_traits specialization in query test
auto_ptr<string> is now handled automatically as a wrapper.
Diffstat (limited to 'common/query/traits.hxx')
-rw-r--r--common/query/traits.hxx21
1 files changed, 0 insertions, 21 deletions
diff --git a/common/query/traits.hxx b/common/query/traits.hxx
deleted file mode 100644
index ea142c9..0000000
--- a/common/query/traits.hxx
+++ /dev/null
@@ -1,21 +0,0 @@
-// file : common/query/traits.hxx
-// author : Boris Kolpackov <boris@codesynthesis.com>
-// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
-// license : GNU GPL v2; see accompanying LICENSE file
-
-#ifndef TRAITS_HXX
-#define TRAITS_HXX
-
-#include <common/config.hxx>
-
-#if defined(DATABASE_MYSQL)
-# include "traits-mysql.hxx"
-#elif defined(DATABASE_ORACLE)
-# include "traits-oracle.hxx"
-#elif defined(DATABASE_SQLITE)
-# include "traits-sqlite.hxx"
-#elif defined(DATABASE_PGSQL)
-# include "traits-pgsql.hxx"
-#endif
-
-#endif // TRAITS_HXX