summaryrefslogtreecommitdiff
path: root/src/gtest-printers.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/gtest-printers.cc')
-rw-r--r--src/gtest-printers.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gtest-printers.cc b/src/gtest-printers.cc
index e576ca4..62ea590 100644
--- a/src/gtest-printers.cc
+++ b/src/gtest-printers.cc
@@ -138,7 +138,7 @@ enum CharFormat {
// Returns true if c is a printable ASCII character. We test the
// value of c directly instead of calling isprint(), which is buggy on
// Windows Mobile.
-static inline bool IsPrintableAscii(wchar_t c) {
+inline bool IsPrintableAscii(wchar_t c) {
return 0x20 <= c && c <= 0x7E;
}