| 23 | #include "defs.hpp" |
| 24 | |
| 25 | Pointer::Pointer(const std::size_t cap, |
| 26 | const wrap_t wrap_set ) : Pointer( cap ) |
| 27 | { |
| 28 | wrap_a = wrap_set; |
| 29 | #ifdef JVEC_MACHINE |
| 30 | wrap_b = wrap_set; |
| 31 | #endif |
| 32 | } |
| 33 | |
| 34 | |
| 35 | Pointer::Pointer( Pointer &other, |
nothing calls this directly
no outgoing calls
no test coverage detected