aboutsummaryrefslogtreecommitdiff
path: root/libbutl/url.mxx
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl/url.mxx')
-rw-r--r--libbutl/url.mxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/libbutl/url.mxx b/libbutl/url.mxx
index d50ae55..ea01725 100644
--- a/libbutl/url.mxx
+++ b/libbutl/url.mxx
@@ -255,14 +255,14 @@ LIBBUTL_MODEXPORT namespace butl
class basic_url
{
public:
- using traits = T; //@@ TODO: rename traits_type.
+ using traits_type = T;
- using string_type = typename traits::string_type;
+ using string_type = typename traits_type::string_type;
using char_type = typename string_type::value_type;
- using path_type = typename traits::path_type;
+ using path_type = typename traits_type::path_type;
- using scheme_type = typename traits::scheme_type;
- using authority_type = typename traits::authority_type;
+ using scheme_type = typename traits_type::scheme_type;
+ using authority_type = typename traits_type::authority_type;
using host_type = typename authority_type::host_type;
scheme_type scheme;