summaryrefslogtreecommitdiffstats
path: root/src/util.cc
diff options
context:
space:
mode:
authorTakuto Ikuta <tikuta@chromium.org>2017-05-09 04:34:31 (GMT)
committerTakuto Ikuta <tikuta@chromium.org>2017-05-09 05:20:03 (GMT)
commit75b338506197921f14e3ce0eb9a04d2787ae1750 (patch)
tree812229300ad3518d471e16c3a05f8398eaa67aeb /src/util.cc
parent3b320023276f98b978054c14c65d3888b989ff4a (diff)
downloadNinja-75b338506197921f14e3ce0eb9a04d2787ae1750.zip
Ninja-75b338506197921f14e3ce0eb9a04d2787ae1750.tar.gz
Ninja-75b338506197921f14e3ce0eb9a04d2787ae1750.tar.bz2
Fix for review
Diffstat (limited to 'src/util.cc')
-rw-r--r--src/util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cc b/src/util.cc
index ce4b192..84de879 100644
--- a/src/util.cc
+++ b/src/util.cc
@@ -471,7 +471,7 @@ void Win32Fatal(const char* function) {
}
#endif
-static bool islatinalpha(int c) {
+bool islatinalpha(int c) {
// isalpha() is locale-dependent.
return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z');
}