diff options
author | Eric Christopher <echristo@apple.com> | 2009-11-16 22:34:32 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2009-11-16 22:34:32 +0000 |
commit | 4c269e2feb230d4380c0b3cd72da517bd2222023 (patch) | |
tree | 5eed80d6eee9e4e8966d66a8dc171e4ba76e43bf /include/llvm/ADT/StringRef.h | |
parent | 600c04369775b014073ec295545ff9dd2a7f2fed (diff) |
Fix unused variables warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@88977 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/ADT/StringRef.h')
-rw-r--r-- | include/llvm/ADT/StringRef.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/StringRef.h b/include/llvm/ADT/StringRef.h index b6486e7676..ed651bf1a2 100644 --- a/include/llvm/ADT/StringRef.h +++ b/include/llvm/ADT/StringRef.h @@ -198,7 +198,7 @@ namespace llvm { /// find_first_of - Find the first character in the string that is \arg C, /// or npos if not found. Same as find. - size_type find_first_of(char C, size_t From = 0) const { return find(C); } + size_type find_first_of(char C, size_t = 0) const { return find(C); } /// find_first_of - Find the first character in the string that is in \arg /// Chars, or npos if not found. |