From d37709e5c27b1fe7b98de57247449c6272c79580 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 3 Jun 2019 12:59:26 +0300 Subject: Adapt to renaming traits alias to traits_type for basic_path, basic_url, and string_table class templates --- build2/depdb.hxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'build2/depdb.hxx') diff --git a/build2/depdb.hxx b/build2/depdb.hxx index af9b9e3..95d9f4b 100644 --- a/build2/depdb.hxx +++ b/build2/depdb.hxx @@ -228,7 +228,8 @@ namespace build2 expect (const path_type& v) { string* l (read ()); - if (l == nullptr || path_type::traits::compare (*l, v.string ()) != 0) + if (l == nullptr || + path_type::traits_type::compare (*l, v.string ()) != 0) { write (v); return l; -- cgit v1.1