Fixed instance variable naming convention
parent
307fd2737a
commit
5fac2aa05a
|
@ -75,10 +75,10 @@ TEST( wrap, parse ) {
|
||||||
|
|
||||||
// check method
|
// check method
|
||||||
Method m1 = cls.methods.front();
|
Method m1 = cls.methods.front();
|
||||||
EXPECT(m1.returns=="double");
|
EXPECT(m1.returns_=="double");
|
||||||
EXPECT(m1.name=="norm");
|
EXPECT(m1.name_=="norm");
|
||||||
EXPECT(m1.args.size()==0);
|
EXPECT(m1.args_.size()==0);
|
||||||
EXPECT(m1.is_const);
|
EXPECT(m1.is_const_);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ************************************************************************* */
|
/* ************************************************************************* */
|
||||||
|
|
Loading…
Reference in New Issue