Unbreak the build. tsk tsk

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14390 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-06-25 00:18:02 +00:00
parent b140762a45
commit 990a6a39c0
2 changed files with 2 additions and 2 deletions

View File

@ -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]))

View File

@ -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]))