blob: 7171e30d77b32dae1391abb52f7bfdcb2350b602 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// file : build/cxx/target.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2015 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <build/cxx/target>
using namespace std;
namespace build
{
namespace cxx
{
using type_info = target::type_info;
const type_info hxx::ti_ {typeid (hxx), "hxx", &file::ti_};
const type_info ixx::ti_ {typeid (ixx), "ixx", &file::ti_};
const type_info txx::ti_ {typeid (txx), "txx", &file::ti_};
const type_info cxx::ti_ {typeid (cxx), "cxx", &file::ti_};
}
}
|