[llvm-commits] CVS: llvm/include/Support/StringExtras.h
Chris Lattner
lattner at cs.uiuc.edu
Thu Jun 24 19:19:01 PDT 2004
Changes in directory llvm/include/Support:
StringExtras.h updated: 1.15 -> 1.16
---
Log message:
Unbreak the build. tsk tsk
---
Diffs of the changes: (+1 -1)
Index: llvm/include/Support/StringExtras.h
diff -u llvm/include/Support/StringExtras.h:1.15 llvm/include/Support/StringExtras.h:1.16
--- llvm/include/Support/StringExtras.h:1.15 Thu Jun 24 18:38:52 2004
+++ llvm/include/Support/StringExtras.h Thu Jun 24 19:18:02 2004
@@ -97,7 +97,7 @@
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]))
More information about the llvm-commits
mailing list