aboutsummaryrefslogtreecommitdiff
path: root/build/path-map
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-03-02 15:17:28 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-03-02 15:17:28 +0200
commitd4a6fb02ab5741aa41251653f0be3feb4594e553 (patch)
treedb4742baace7bf7f49e82c165bdf218913750ed0 /build/path-map
parent65664ba5a6241e9c58d846cde6ed9fcbbe53d2cd (diff)
Cleanup to support clang compilation
Diffstat (limited to 'build/path-map')
-rw-r--r--build/path-map4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/path-map b/build/path-map
index c422dde..ee2dd79 100644
--- a/build/path-map
+++ b/build/path-map
@@ -29,12 +29,12 @@ namespace build
{
typedef basic_path<C> K;
- typedef C char_type;
+ typedef C delimiter_type;
typedef std::basic_string<C> string_type;
typedef compare_prefix<std::basic_string<C>> base;
explicit
- compare_prefix (C d): base (d) {}
+ compare_prefix (delimiter_type d): base (d) {}
bool
operator() (const K& x, const K& y) const