aboutsummaryrefslogtreecommitdiff
path: root/libcutl/compiler/type-id.txx
blob: e23e4a52dbc982f375d9328abab0e447ea413bce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// file      : libcutl/compiler/type-id.txx
// 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))
    {
    }
  }
}