aboutsummaryrefslogtreecommitdiff
path: root/common/types/driver.cxx
blob: 4f1b69d617b6b592bf3b871d3a6139143de08e63 (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
// file      : common/types/driver.cxx
// copyright : Copyright (c) 2009-2017 Code Synthesis Tools CC
// license   : GNU GPL v2; see accompanying LICENSE file

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

#include <memory>
#include <cassert>
#include <iostream>

#include <common/common.hxx>

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

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));
}