aboutsummaryrefslogtreecommitdiff
path: root/brep/utility
diff options
context:
space:
mode:
Diffstat (limited to 'brep/utility')
-rw-r--r--brep/utility34
1 files changed, 0 insertions, 34 deletions
diff --git a/brep/utility b/brep/utility
deleted file mode 100644
index 3c6f5a2..0000000
--- a/brep/utility
+++ /dev/null
@@ -1,34 +0,0 @@
-// file : brep/utility -*- C++ -*-
-// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
-// license : MIT; see accompanying LICENSE file
-
-#ifndef BREP_UTILITY
-#define BREP_UTILITY
-
-#include <memory> // make_shared()
-#include <string> // to_string()
-#include <utility> // move(), forward(), declval(), make_pair()
-#include <cassert> // assert()
-#include <iterator> // make_move_iterator()
-
-#include <butl/utility> // reverse_iterate(), operator<<(ostream, exception)
-
-namespace brep
-{
- using std::move;
- using std::forward;
- using std::declval;
-
- using std::make_pair;
- using std::make_shared;
- using std::make_move_iterator;
- using std::to_string;
-
- // <butl/utility>
- //
- using butl::reverse_iterate;
-}
-
-#include <brep/version>
-
-#endif // BREP_UTILITY