aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-09-28 21:48:06 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-09-28 21:48:06 +0300
commitac80e3c37f1fee068e46b6f5a2043581d413e992 (patch)
tree9de253075cd0c19a96acc8344eb63609357eae87 /web
parent63eb768b7dcd6b4015354a5f1b75f95032c7149a (diff)
Adapt to libbutl headers extension change from .mxx to .hxx
Diffstat (limited to 'web')
-rw-r--r--web/server/apache/request.cxx6
-rw-r--r--web/server/apache/service.cxx4
-rw-r--r--web/server/apache/service.txx2
-rw-r--r--web/server/mime-url-encoding.cxx2
-rw-r--r--web/server/module.hxx4
5 files changed, 9 insertions, 9 deletions
diff --git a/web/server/apache/request.cxx b/web/server/apache/request.cxx
index a413081..64e1e6d 100644
--- a/web/server/apache/request.cxx
+++ b/web/server/apache/request.cxx
@@ -34,9 +34,9 @@
#include <streambuf>
#include <algorithm> // min()
-#include <libbutl/utility.mxx> // icasecmp()
-#include <libbutl/optional.mxx>
-#include <libbutl/timestamp.mxx>
+#include <libbutl/utility.hxx> // icasecmp()
+#include <libbutl/optional.hxx>
+#include <libbutl/timestamp.hxx>
#include <web/server/mime-url-encoding.hxx>
diff --git a/web/server/apache/service.cxx b/web/server/apache/service.cxx
index 9fb23da..af5873e 100644
--- a/web/server/apache/service.cxx
+++ b/web/server/apache/service.cxx
@@ -15,8 +15,8 @@
#include <cstring> // strlen(), strcmp()
#include <exception>
-#include <libbutl/utility.mxx> // function_cast()
-#include <libbutl/optional.mxx>
+#include <libbutl/utility.hxx> // function_cast()
+#include <libbutl/optional.hxx>
#include <web/server/module.hxx>
#include <web/server/apache/log.hxx>
diff --git a/web/server/apache/service.txx b/web/server/apache/service.txx
index 1b16d0b..9e1037b 100644
--- a/web/server/apache/service.txx
+++ b/web/server/apache/service.txx
@@ -8,7 +8,7 @@
#include <utility> // move()
#include <exception>
-#include <libbutl/utility.mxx> // operator<<(ostream, exception)
+#include <libbutl/utility.hxx> // operator<<(ostream, exception)
namespace web
{
diff --git a/web/server/mime-url-encoding.cxx b/web/server/mime-url-encoding.cxx
index fd1e4e8..fd09cd2 100644
--- a/web/server/mime-url-encoding.cxx
+++ b/web/server/mime-url-encoding.cxx
@@ -6,7 +6,7 @@
#include <string>
#include <iterator> // back_inserter
-#include <libbutl/url.mxx>
+#include <libbutl/url.hxx>
using namespace std;
using namespace butl;
diff --git a/web/server/module.hxx b/web/server/module.hxx
index beda73c..f870163 100644
--- a/web/server/module.hxx
+++ b/web/server/module.hxx
@@ -14,8 +14,8 @@
#include <utility> // move()
#include <stdexcept> // runtime_error
-#include <libbutl/path.mxx>
-#include <libbutl/optional.mxx>
+#include <libbutl/path.hxx>
+#include <libbutl/optional.hxx>
namespace web
{