diff options
Diffstat (limited to 'libbrep')
-rw-r--r-- | libbrep/build.hxx | 2 | ||||
-rw-r--r-- | libbrep/common.hxx | 2 | ||||
-rw-r--r-- | libbrep/types.hxx | 22 | ||||
-rw-r--r-- | libbrep/utility.hxx | 4 | ||||
-rw-r--r-- | libbrep/wrapper-traits.hxx | 2 |
5 files changed, 16 insertions, 16 deletions
diff --git a/libbrep/build.hxx b/libbrep/build.hxx index 8263b9e..151f8dc 100644 --- a/libbrep/build.hxx +++ b/libbrep/build.hxx @@ -9,7 +9,7 @@ #include <odb/core.hxx> #include <odb/section.hxx> -#include <libbutl/target-triplet.mxx> +#include <libbutl/target-triplet.hxx> #include <libbrep/types.hxx> #include <libbrep/utility.hxx> diff --git a/libbrep/common.hxx b/libbrep/common.hxx index 0899dc9..98fc4e7 100644 --- a/libbrep/common.hxx +++ b/libbrep/common.hxx @@ -114,7 +114,7 @@ namespace brep std::chrono::nanoseconds::period>::value, "The following timestamp ODB mapping is invalid"); - // As it pointed out in libbutl/timestamp.mxx we will overflow in year 2262, + // As it pointed out in libbutl/timestamp.hxx we will overflow in year 2262, // but by that time some larger basic type will be available for mapping. // #pragma db map type(timestamp) as(uint64_t) \ diff --git a/libbrep/types.hxx b/libbrep/types.hxx index 65dfc2d..3b5777d 100644 --- a/libbrep/types.hxx +++ b/libbrep/types.hxx @@ -21,12 +21,12 @@ #include <odb/lazy-ptr.hxx> -#include <libbutl/url.mxx> -#include <libbutl/path.mxx> -#include <libbutl/path-io.mxx> -#include <libbutl/optional.mxx> -#include <libbutl/timestamp.mxx> -#include <libbutl/small-vector.mxx> +#include <libbutl/url.hxx> +#include <libbutl/path.hxx> +#include <libbutl/path-io.hxx> +#include <libbutl/optional.hxx> +#include <libbutl/timestamp.hxx> +#include <libbutl/small-vector.hxx> namespace brep { @@ -50,7 +50,7 @@ namespace brep using std::weak_ptr; using std::vector; - using butl::small_vector; // <libbutl/small-vector.mxx> + using butl::small_vector; // <libbutl/small-vector.hxx> using strings = vector<string>; using cstrings = vector<const char*>; @@ -69,7 +69,7 @@ namespace brep using std::generic_category; - // <libbutl/optional.mxx> + // <libbutl/optional.hxx> // using butl::optional; using butl::nullopt; @@ -79,7 +79,7 @@ namespace brep using odb::lazy_shared_ptr; using odb::lazy_weak_ptr; - // <libbutl/path.mxx> + // <libbutl/path.hxx> // using butl::path; using butl::dir_path; @@ -91,11 +91,11 @@ namespace brep using butl::path_cast; - // <libbutl/url.mxx> + // <libbutl/url.hxx> // using butl::url; - // <libbutl/timestamp.mxx> + // <libbutl/timestamp.hxx> // using butl::system_clock; using butl::timestamp; diff --git a/libbrep/utility.hxx b/libbrep/utility.hxx index be27a71..7058c94 100644 --- a/libbrep/utility.hxx +++ b/libbrep/utility.hxx @@ -10,7 +10,7 @@ #include <cassert> // assert() #include <iterator> // make_move_iterator() -#include <libbutl/utility.mxx> // icasecmp(), reverse_iterate(), +#include <libbutl/utility.hxx> // icasecmp(), reverse_iterate(), // operator<<(ostream, exception) namespace brep @@ -24,7 +24,7 @@ namespace brep using std::make_move_iterator; using std::to_string; - // <libbutl/utility.mxx> + // <libbutl/utility.hxx> // using butl::utf8; using butl::icasecmp; diff --git a/libbrep/wrapper-traits.hxx b/libbrep/wrapper-traits.hxx index 9dad27b..8c9d830 100644 --- a/libbrep/wrapper-traits.hxx +++ b/libbrep/wrapper-traits.hxx @@ -6,7 +6,7 @@ #include <odb/pre.hxx> -#include <libbutl/optional.mxx> +#include <libbutl/optional.hxx> #include <odb/wrapper-traits.hxx> |