aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-06-25 00:18:02 +0000
committerChris Lattner <sabre@nondot.org>2004-06-25 00:18:02 +0000
commit990a6a39c0f2899ace6e913d536db5abc030c5cc (patch)
tree0e41d6529374619e9f0cd2c1c09d6c8336e313d1 /include/llvm/ADT
parentb140762a45d21aaed054f15adaff0fc2274d939d (diff)
downloadexternal_llvm-990a6a39c0f2899ace6e913d536db5abc030c5cc.zip
external_llvm-990a6a39c0f2899ace6e913d536db5abc030c5cc.tar.gz
external_llvm-990a6a39c0f2899ace6e913d536db5abc030c5cc.tar.bz2
Unbreak the build. tsk tsk
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14390 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT')
-rw-r--r--include/llvm/ADT/StringExtras.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/StringExtras.h b/include/llvm/ADT/StringExtras.h
index 0b45103..daf866f 100644
--- a/include/llvm/ADT/StringExtras.h
+++ b/include/llvm/ADT/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]))