aboutsummaryrefslogtreecommitdiff
path: root/web
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-11-05 17:41:16 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-11-11 17:52:19 +0200
commitaacff79e854d6d4eb22540339bc88c3efab353a2 (patch)
tree042ac3a493dcf0ddd72f19c572159a1cea4aa5f4 /web
parente70163685afe5cae1ebe055a53ce353ae9cbe590 (diff)
Implement package dependency resolution
Diffstat (limited to 'web')
-rw-r--r--web/module5
1 files changed, 2 insertions, 3 deletions
diff --git a/web/module b/web/module
index 25c4bf2..1774884 100644
--- a/web/module
+++ b/web/module
@@ -58,8 +58,7 @@ namespace web
sequence_error (std::string d): std::runtime_error (std::move (d)) {}
};
- template <typename T>
- using optional = butl::optional<T>;
+ using butl::optional;
struct name_value
{
@@ -74,7 +73,7 @@ namespace web
};
using name_values = std::vector<name_value>;
- using path = butl::path;
+ using butl::path;
class request
{