diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2021-09-28 21:48:06 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2021-09-28 21:48:06 +0300 |
commit | ac80e3c37f1fee068e46b6f5a2043581d413e992 (patch) | |
tree | 9de253075cd0c19a96acc8344eb63609357eae87 /mod/external-handler.cxx | |
parent | 63eb768b7dcd6b4015354a5f1b75f95032c7149a (diff) |
Adapt to libbutl headers extension change from .mxx to .hxx
Diffstat (limited to 'mod/external-handler.cxx')
-rw-r--r-- | mod/external-handler.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/external-handler.cxx b/mod/external-handler.cxx index 2f58bf5..cdf3f71 100644 --- a/mod/external-handler.cxx +++ b/mod/external-handler.cxx @@ -13,9 +13,9 @@ #include <type_traits> // static_assert #include <system_error> // error_code, generic_category() -#include <libbutl/process.mxx> -#include <libbutl/fdstream.mxx> -#include <libbutl/process-io.mxx> // operator<<(ostream, process_args) +#include <libbutl/process.hxx> +#include <libbutl/fdstream.hxx> +#include <libbutl/process-io.hxx> // operator<<(ostream, process_args) using namespace std; using namespace butl; |