Fix obvious typo.

llvm-svn: 75563
This commit is contained in:
Eli Friedman 2009-07-14 00:09:42 +00:00
parent acb9927fd8
commit 2976318bb2
1 changed files with 1 additions and 1 deletions

View File

@ -406,7 +406,7 @@ struct SelectClass_match {
};
template<typename Cond, typename LHS, typename RHS>
inline SelectClass_match<Cond, RHS, LHS>
inline SelectClass_match<Cond, LHS, RHS>
m_Select(const Cond &C, const LHS &L, const RHS &R) {
return SelectClass_match<Cond, LHS, RHS>(C, L, R);
}