aboutsummaryrefslogtreecommitdiff
path: root/bbot/types.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'bbot/types.hxx')
-rw-r--r--bbot/types.hxx26
1 files changed, 13 insertions, 13 deletions
diff --git a/bbot/types.hxx b/bbot/types.hxx
index a39abe2..ea08bc6 100644
--- a/bbot/types.hxx
+++ b/bbot/types.hxx
@@ -1,5 +1,5 @@
// file : bbot/types.hxx -*- C++ -*-
-// license : TBC; see accompanying LICENSE file
+// license : MIT; see accompanying LICENSE file
#ifndef BBOT_TYPES_HXX
#define BBOT_TYPES_HXX
@@ -19,13 +19,13 @@
#include <stdexcept> // logic_error, invalid_argument, runtime_error
#include <system_error>
-#include <libbutl/path.mxx>
-#include <libbutl/optional.mxx>
-#include <libbutl/fdstream.mxx>
+#include <libbutl/path.hxx>
+#include <libbutl/optional.hxx>
+#include <libbutl/fdstream.hxx>
#include <libbutl/lz4-stream.hxx>
-#include <libbutl/vector-view.mxx>
-#include <libbutl/small-vector.mxx>
-#include <libbutl/standard-version.mxx>
+#include <libbutl/vector-view.hxx>
+#include <libbutl/small-vector.hxx>
+#include <libbutl/standard-version.hxx>
namespace bbot
{
@@ -66,12 +66,12 @@ namespace bbot
using std::generic_category;
using io_error = std::ios_base::failure;
- // <libbutl/optional.mxx>
+ // <libbutl/optional.hxx>
//
using butl::optional;
using butl::nullopt;
- // <libbutl/fdstream.mxx>
+ // <libbutl/fdstream.hxx>
//
using butl::auto_fd;
using butl::ifdstream;
@@ -82,15 +82,15 @@ namespace bbot
using olz4stream = butl::lz4::ostream;
using ilz4stream = butl::lz4::istream;
- // <libbutl/vector-view.mxx>
+ // <libbutl/vector-view.hxx>
//
using butl::vector_view;
- // <libbutl/small-vector.mxx>
+ // <libbutl/small-vector.hxx>
//
using butl::small_vector;
- // <libbutl/path.mxx>
+ // <libbutl/path.hxx>
//
using butl::path;
using butl::dir_path;
@@ -100,7 +100,7 @@ namespace bbot
using paths = std::vector<path>;
using dir_paths = std::vector<dir_path>;
- // <libbutl/standard-version.mxx>
+ // <libbutl/standard-version.hxx>
//
using butl::standard_version;
}