commit | c4958b4b520af791ca9a0ce20a7e327a1d7c0e68 | [log] [tgz] |
---|---|---|
author | Davide Italiano <davide@freebsd.org> | Sat Oct 17 06:46:39 2015 +0000 |
committer | Davide Italiano <davide@freebsd.org> | Sat Oct 17 06:46:39 2015 +0000 |
tree | dccbf690478e4a52519c2d8ca9fb9c07378562b1 | |
parent | d178f312dd7d18727b584b37477d18bfb8e7e95d [diff] [blame] |
[Frontend] Name variable correctly. Reported by: Kim Grasman! llvm-svn: 250605
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index d4f2044..6e23411 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp
@@ -1986,8 +1986,8 @@ } void ModuleSignature::add(StringRef Value) { - for (auto &S : Value) - add(S, 8); + for (auto &c : Value) + add(c, 8); } llvm::APInt ModuleSignature::getAsInteger() const {