diff options
author | Nico Weber <nicolasweber@gmx.de> | 2017-01-24 19:03:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-24 19:03:50 (GMT) |
commit | 2993752dd617ada5218836dd6545fb06690e238b (patch) | |
tree | 574e0fcacc7f65345cd9a99c471a06c411e94db0 /src/util.h | |
parent | 9e71431e6f8323be8ced8997409cfe7a389c6583 (diff) | |
parent | 1cc730ddc27df52d757be1c2e7aa96193f8ca9df (diff) | |
download | Ninja-2993752dd617ada5218836dd6545fb06690e238b.zip Ninja-2993752dd617ada5218836dd6545fb06690e238b.tar.gz Ninja-2993752dd617ada5218836dd6545fb06690e238b.tar.bz2 |
Merge pull request #1181 from DanielWeber/issue-1161
Allow more path components
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -43,8 +43,8 @@ void Error(const char* msg, ...); /// Canonicalize a path like "foo/../bar.h" into just "bar.h". /// |slash_bits| has bits set starting from lowest for a backslash that was /// normalized to a forward slash. (only used on Windows) -bool CanonicalizePath(string* path, unsigned int* slash_bits, string* err); -bool CanonicalizePath(char* path, size_t* len, unsigned int* slash_bits, +bool CanonicalizePath(string* path, uint64_t* slash_bits, string* err); +bool CanonicalizePath(char* path, size_t* len, uint64_t* slash_bits, string* err); /// Appends |input| to |*result|, escaping according to the whims of either |