diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-11-05 17:41:16 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-11-11 17:52:19 +0200 |
commit | aacff79e854d6d4eb22540339bc88c3efab353a2 (patch) | |
tree | 042ac3a493dcf0ddd72f19c572159a1cea4aa5f4 /web | |
parent | e70163685afe5cae1ebe055a53ce353ae9cbe590 (diff) |
Implement package dependency resolution
Diffstat (limited to 'web')
-rw-r--r-- | web/module | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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 { |