aboutsummaryrefslogtreecommitdiff
path: root/build2/cxx/utility
diff options
context:
space:
mode:
Diffstat (limited to 'build2/cxx/utility')
-rw-r--r--build2/cxx/utility42
1 files changed, 0 insertions, 42 deletions
diff --git a/build2/cxx/utility b/build2/cxx/utility
deleted file mode 100644
index 7333af6..0000000
--- a/build2/cxx/utility
+++ /dev/null
@@ -1,42 +0,0 @@
-// file : build2/cxx/utility -*- C++ -*-
-// copyright : Copyright (c) 2014-2016 Code Synthesis Ltd
-// license : MIT; see accompanying LICENSE file
-
-#ifndef BUILD2_CXX_UTILITY
-#define BUILD2_CXX_UTILITY
-
-#include <build2/types>
-#include <build2/utility>
-
-#include <build2/target>
-
-#include <build2/cxx/common>
-
-namespace build2
-{
- namespace cxx
- {
- // T is either target or scope.
- //
- template <typename T>
- void
- append_std (cstrings&, scope& rs, const string& cid, T&, string& storage);
-
- template <typename T>
- void
- hash_std (sha256&, scope& rs, const string& cid, T&);
-
- // Append or hash library options from one of the cxx.export.* variables
- // recursively, prerequisite libraries first.
- //
- void
- append_lib_options (cstrings&, target&, const char* variable, lorder);
-
- void
- hash_lib_options (sha256&, target&, const char* variable, lorder);
- }
-}
-
-#include <build2/cxx/utility.ixx>
-
-#endif // BUILD2_CXX_UTILITY