| 128 | namespace embree |
| 129 | { |
| 130 | BarrierSys::BarrierSys (size_t N) { |
| 131 | opaque = new BarrierSysImplementation(N); |
| 132 | } |
| 133 | |
| 134 | BarrierSys::~BarrierSys () { |
| 135 | delete (BarrierSysImplementation*) opaque; |
nothing calls this directly
no outgoing calls
no test coverage detected