Actions
Task #1481
closedChange constructor of Validator classes
Description
In current implementation, the Face
member of Validator
is defined as shared_ptr<Face>
.
The constructor of Validator
also requires shared_ptr<Face>
.
This forces applications that use validators to allocate Face in heap.
In this task, we need to change shared_ptr<Face>
to Face&
.
Updated by Yingdi Yu over 10 years ago
- Status changed from New to Code review
- % Done changed from 0 to 100
Updated by Alex Afanasyev over 10 years ago
- Status changed from Code review to In Progress
- % Done changed from 100 to 80
We can remove the old API now (in a new commit).
Updated by Yingdi Yu over 10 years ago
- Status changed from In Progress to Code review
- % Done changed from 80 to 100
Updated by Yingdi Yu over 10 years ago
- Category set to Security
- Status changed from Code review to Closed
- Target version set to v0.1
Actions