blob: 92cf9affb2490f43f22026f5fa4badd558e1a93b (
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
|
// file : common/types/driver.cxx
// 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));
}
|