aboutsummaryrefslogtreecommitdiff
path: root/cutl/compiler/type-id.txx
blob: aea4a84a480a2dc18d22c182c022c62cb366d006 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// file      : cutl/compiler/type-id.txx
// author    : Boris Kolpackov <boris@codesynthesis.com>
// copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
// license   : MIT; see accompanying LICENSE file

namespace cutl
{
  namespace compiler
  {
    template <typename X>
    inline
    type_id::
    type_id (X const volatile& x)
        : ti_ (&typeid (x))
    {
    }
  }
}