Fixed instance variable naming convention

release/4.3a0
Frank Dellaert 2011-10-21 02:36:09 +00:00
parent 307fd2737a
commit 5fac2aa05a
1 changed files with 4 additions and 4 deletions

View File

@ -75,10 +75,10 @@ TEST( wrap, parse ) {
// check method
Method m1 = cls.methods.front();
EXPECT(m1.returns=="double");
EXPECT(m1.name=="norm");
EXPECT(m1.args.size()==0);
EXPECT(m1.is_const);
EXPECT(m1.returns_=="double");
EXPECT(m1.name_=="norm");
EXPECT(m1.args_.size()==0);
EXPECT(m1.is_const_);
}
/* ************************************************************************* */