diff options
author | Chris Lattner <sabre@nondot.org> | 2004-06-25 00:18:02 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-06-25 00:18:02 +0000 |
commit | 6b9598db89ac8959d89930876b770e088ef0e9b7 (patch) | |
tree | 968b8b8827fe55a9177f21d3d8c6c6cf40da9c06 /llvm/include/Support/StringExtras.h | |
parent | 23dbc8170c91c09bf1c7f3f18d4321e05c500db3 (diff) | |
download | bcm5719-llvm-6b9598db89ac8959d89930876b770e088ef0e9b7.tar.gz bcm5719-llvm-6b9598db89ac8959d89930876b770e088ef0e9b7.zip |
Unbreak the build. tsk tsk
llvm-svn: 14390
Diffstat (limited to 'llvm/include/Support/StringExtras.h')
-rw-r--r-- | llvm/include/Support/StringExtras.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/Support/StringExtras.h b/llvm/include/Support/StringExtras.h index 0b45103aa3b..daf866f301d 100644 --- a/llvm/include/Support/StringExtras.h +++ b/llvm/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])) |