| 196 | #endif |
| 197 | |
| 198 | void fglmVector::makeUnique () |
| 199 | { |
| 200 | if(rep->refcount () != 1) |
| 201 | { |
| 202 | rep->deleteObject (); |
| 203 | rep = rep->clone (); |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | int fglmVector::size () const |
| 208 | { |
nothing calls this directly
no test coverage detected