3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-03 13:07:53 +00:00

more fun with docs

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2014-09-16 21:46:39 -07:00
parent 44e8833369
commit e32448d7ea
7 changed files with 244 additions and 103 deletions

View file

@ -118,8 +118,10 @@ public:
tbv_ref& operator=(tbv* d2) {
if (d) mgr.deallocate(d);
d = d2;
return *this;
}
tbv& operator*() { return *d; }
tbv* get() { return d; }
};