diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-09-28 18:01:32 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-10-01 12:15:10 +0300 |
commit | 4c7a3c1350687d2913a2e008c2c41deceedcdead (patch) | |
tree | 176952b332f8195e2bce8d95ee2129a9c1870ff9 /libbuild2/cc/msvc.cxx | |
parent | 0f88ef24789af5761c3c3dd03f9a07f5978aca91 (diff) |
Adapt to renaming butl::casecmp() to icasecmp()
Diffstat (limited to 'libbuild2/cc/msvc.cxx')
-rw-r--r-- | libbuild2/cc/msvc.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/cc/msvc.cxx b/libbuild2/cc/msvc.cxx index d802b98..2d53b69 100644 --- a/libbuild2/cc/msvc.cxx +++ b/libbuild2/cc/msvc.cxx @@ -318,10 +318,10 @@ namespace build2 { const char* e (s.c_str () + n + 1); - if (casecmp (e, "obj", 3) == 0) + if (icasecmp (e, "obj", 3) == 0) obj = true; - if (casecmp (e, "dll", 3) == 0) + if (icasecmp (e, "dll", 3) == 0) dll = true; } } |