]> granicus.if.org Git - clang/commit
Fix an amusing typo that completely the re-introduction of parameters
authorDouglas Gregor <dgregor@apple.com>
Tue, 2 Mar 2010 01:29:43 +0000 (01:29 +0000)
committerDouglas Gregor <dgregor@apple.com>
Tue, 2 Mar 2010 01:29:43 +0000 (01:29 +0000)
commit8f8210c47797f013e0fb24a26f9c4751b10783fe
tree05ee32b6d2c5a84adc1c0e502fb5b5a0ac8ce3f2
parentdf496529b7009d6e58f335926884200b38d27687
Fix an amusing typo that completely the re-introduction of parameters
for the purposes of parsing default arguments. In effect, we would
re-introduce the parameter with a default argument N times (where N is
the number of parameters preceding the parameter with a default
argument). This showed up when a defaulted parameter of a member
function of a local class shadowed a parameter of the enclosing
function. Fixes PR6383.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@97534 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Parse/ParseDeclCXX.cpp
test/SemaCXX/local-classes.cpp