From 70317569c6dcd9809ed4a8c425777e653ec6ca08 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 1 May 2017 18:24:31 +0300 Subject: Add hxx extension for headers --- build2/cc/types | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 build2/cc/types (limited to 'build2/cc/types') diff --git a/build2/cc/types b/build2/cc/types deleted file mode 100644 index 68d9949..0000000 --- a/build2/cc/types +++ /dev/null @@ -1,35 +0,0 @@ -// file : build2/cc/types -*- C++ -*- -// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd -// license : MIT; see accompanying LICENSE file - -#ifndef BUILD2_CC_TYPES -#define BUILD2_CC_TYPES - -#include -#include - -namespace build2 -{ - namespace cc - { - // Compiler language. - // - enum class lang {c, cxx}; - - inline ostream& - operator<< (ostream& os, lang l) - { - return os << (l == lang::c ? "C" : "C++"); - } - - // Compile/link output type (executable, static, or shared). - // - enum class otype {e, a, s}; - - // Library link order. - // - enum class lorder {a, s, a_s, s_a}; - } -} - -#endif // BUILD2_CC_TYPES -- cgit v1.1