Browse Source

Introduced consistent usage of '&' - it is now always stuck to the type.

Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>
pull/642/head
Dimitar Dobrev 10 years ago
parent
commit
2ef14d0fcf
  1. 2
      src/CppParser/Parser.cpp

2
src/CppParser/Parser.cpp

@ -828,7 +828,7 @@ void Parser::WalkRecordCXX(clang::CXXRecordDecl* Record, Class* RC) @@ -828,7 +828,7 @@ void Parser::WalkRecordCXX(clang::CXXRecordDecl* Record, Class* RC)
// Iterate through the record bases.
for(auto it = Record->bases_begin(); it != Record->bases_end(); ++it)
{
clang::CXXBaseSpecifier &BS = *it;
auto& BS = *it;
BaseClassSpecifier* Base = new BaseClassSpecifier();
Base->Access = ConvertToAccess(BS.getAccessSpecifier());

Loading…
Cancel
Save