aboutsummaryrefslogtreecommitdiff
path: root/build2/cxx/compile.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/cxx/compile.cxx')
-rw-r--r--build2/cxx/compile.cxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/build2/cxx/compile.cxx b/build2/cxx/compile.cxx
index 2f1eb8d..56c518b 100644
--- a/build2/cxx/compile.cxx
+++ b/build2/cxx/compile.cxx
@@ -586,12 +586,9 @@ namespace build2
{
// See if this one is part of the Windows drive letter.
//
- auto isalpha = [](char c) {
- return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z');};
-
if (p > 1 && p + 1 < n && // 2 chars before, 1 after.
l[p - 2] == ' ' &&
- isalpha (l[p - 1]) &&
+ alpha (l[p - 1]) &&
path::traits::is_separator (l[p + 1]))
p = l.rfind (':', p - 2);
}