diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-03-02 15:17:28 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-03-02 15:17:28 +0200 |
commit | d4a6fb02ab5741aa41251653f0be3feb4594e553 (patch) | |
tree | db4742baace7bf7f49e82c165bdf218913750ed0 /build/path-map | |
parent | 65664ba5a6241e9c58d846cde6ed9fcbbe53d2cd (diff) |
Cleanup to support clang compilation
Diffstat (limited to 'build/path-map')
-rw-r--r-- | build/path-map | 4 |
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 |