aboutsummaryrefslogtreecommitdiff
path: root/build2/cxx/link.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'build2/cxx/link.cxx')
-rw-r--r--build2/cxx/link.cxx9
1 files changed, 2 insertions, 7 deletions
diff --git a/build2/cxx/link.cxx b/build2/cxx/link.cxx
index 4ac5c43..d19d6b1 100644
--- a/build2/cxx/link.cxx
+++ b/build2/cxx/link.cxx
@@ -466,15 +466,10 @@ namespace build2
auto upcase_sanitize = [] (char c) -> char
{
- if (c >= 'a' && c <='z')
- {
- const unsigned char shift ('a' - 'A');
- return c - shift;
- }
- else if (c == '-' || c == '+' || c == '.')
+ if (c == '-' || c == '+' || c == '.')
return '_';
else
- return c;
+ return ucase (c);
};
transform (t.name.begin (),