diff options
author | Richard Trieu <rtrieu@google.com> | 2013-02-21 00:50:43 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2013-02-21 00:50:43 +0000 |
commit | e40b56226c1509d092d43a1c0b93cfb697f86158 (patch) | |
tree | 45121bb07a73e92596e5f9aac682e5c1ec587d17 | |
parent | 41a6a3e064192e98a48f5fabccf262412fe37d10 (diff) |
Remove commented out code.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175699 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/AST/ASTDiagnostic.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/AST/ASTDiagnostic.cpp b/lib/AST/ASTDiagnostic.cpp index 4f165132a6..6a950d8dfe 100644 --- a/lib/AST/ASTDiagnostic.cpp +++ b/lib/AST/ASTDiagnostic.cpp @@ -855,7 +855,7 @@ class TemplateDiff { FromIter->getKind() == TemplateArgument::Integral; bool HasToInt = !ToIter.isEnd() && ToIter->getKind() == TemplateArgument::Integral; - //bool IsValidFromInt = false, IsValidToInt = false; + if (HasFromInt) FromInt = FromIter->getAsIntegral(); else |