nightstyles / alembic

Automatically exported from code.google.com/p/alembic
Other
1 stars 0 forks source link

AbcCoreAbstract::ObjectReader::getFullName() returns a double slash at the root #75

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
If an Archive has the following topology:

/ABC/object0/object00

and you have an ObjectReaderPtr to object0 or object00, and you call 
getFullName(), it will return the following:

// returns "//ABC/object0"
o0Ptr->getFullName();

// returns "//ABC/object0/object00"
o00Ptr->getFullName();

They should return "/ABC/object0" and "/ABC/object0/object00" respectively.

Original issue reported on code.google.com by ard...@gmail.com on 16 Nov 2010 at 11:02

GoogleCodeExporter commented 9 years ago
Fixed this in joetmp and added (or updated) some tests in AbcCoreHDF5 to make 
sure it is working.

Original comment by ard...@gmail.com on 16 Nov 2010 at 11:02