aboutsummaryrefslogtreecommitdiff
path: root/include/Support/StringExtras.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/Support/StringExtras.h')
-rw-r--r--include/Support/StringExtras.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Support/StringExtras.h b/include/Support/StringExtras.h
index 0b45103aa3..daf866f301 100644
--- a/include/Support/StringExtras.h
+++ b/include/Support/StringExtras.h
@@ -97,7 +97,7 @@ static inline std::string ftostr(double V) {
return Buffer;
}
-std::string LowercaseString (const std::string &S) {
+static inline std::string LowercaseString (const std::string &S) {
std::string result (S);
for (unsigned i = 0; i < S.length(); ++i)
if (isupper (result[i]))