mirror of
https://github.com/catchorg/Catch2.git
synced 2025-11-03 00:22:03 +01:00
Sweep out Wshadow
Most of the changes are completely pointless renaming of constructor arguments so that they do not use the same name as the type members, but 🤷 Closes #2015
This commit is contained in:
@@ -78,8 +78,8 @@ namespace Catch {
|
||||
TokenStream::TokenStream( Args const& args ):
|
||||
TokenStream( args.m_args.begin(), args.m_args.end() ) {}
|
||||
|
||||
TokenStream::TokenStream( Iterator it, Iterator itEnd ):
|
||||
it( it ), itEnd( itEnd ) {
|
||||
TokenStream::TokenStream( Iterator it_, Iterator itEnd_ ):
|
||||
it( it_ ), itEnd( itEnd_ ) {
|
||||
loadBuffer();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user