summaryrefslogtreecommitdiff
path: root/common/types/driver.cxx
blob: bdc66b85a00f4aaef59205d552da97e6102c1fcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// file      : common/types/driver.cxx
// license   : GNU GPL v2; see accompanying LICENSE file

// Test C++ type handling (anonymous types, aliasing).
//

#include <memory>
#include <iostream>

#include <libcommon/common.hxx>

#include "test.hxx"
#include "test-odb.hxx"

#undef NDEBUG
#include <cassert>

using namespace std;
using namespace odb::core;

template <typename T1, typename T2>
struct same_p
{
  static const bool result = false;
};

template <typename T>
struct same_p<T, T>
{
  static const bool result = true;
};

int
main ()
{
  assert ((same_p<odb::object_traits<object2>::id_type, int>::result));
}