aboutsummaryrefslogtreecommitdiff
path: root/bbot/types.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-10-03 23:36:57 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-10-03 23:36:57 +0300
commit8ac13516f2def2c8d01a2ea11a039ebeafdef8fe (patch)
tree37a8b3bbb8ef45a9c0dd231187c3cb80a4056bda /bbot/types.hxx
parentefea1d1a5e6a61ba21152cc8c1f67420fc8b574d (diff)
Adapt to modularization of libbutl
Diffstat (limited to 'bbot/types.hxx')
-rw-r--r--bbot/types.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/bbot/types.hxx b/bbot/types.hxx
index e1c1cca..fbe1713 100644
--- a/bbot/types.hxx
+++ b/bbot/types.hxx
@@ -20,11 +20,11 @@
#include <stdexcept> // logic_error, invalid_argument, runtime_error
#include <system_error>
-#include <libbutl/path.hxx>
-#include <libbutl/optional.hxx>
-#include <libbutl/vector-view.hxx>
-#include <libbutl/small-vector.hxx>
-#include <libbutl/standard-version.hxx>
+#include <libbutl/path.mxx>
+#include <libbutl/optional.mxx>
+#include <libbutl/vector-view.mxx>
+#include <libbutl/small-vector.mxx>
+#include <libbutl/standard-version.mxx>
namespace bbot
{
@@ -64,20 +64,20 @@ namespace bbot
using std::system_error;
using io_error = std::ios_base::failure;
- // <libbutl/optional.hxx>
+ // <libbutl/optional.mxx>
//
using butl::optional;
using butl::nullopt;
- // <libbutl/vector-view.hxx>
+ // <libbutl/vector-view.mxx>
//
using butl::vector_view;
- // <libbutl/small-vector.hxx>
+ // <libbutl/small-vector.mxx>
//
using butl::small_vector;
- // <libbutl/path.hxx>
+ // <libbutl/path.mxx>
//
using butl::path;
using butl::dir_path;
@@ -87,7 +87,7 @@ namespace bbot
using paths = std::vector<path>;
using dir_paths = std::vector<dir_path>;
- // <libbutl/standard-version.hxx>
+ // <libbutl/standard-version.mxx>
//
using butl::standard_version;
}