| 36 | |
| 37 | template<class T> |
| 38 | inline bool access(size_t offset) const noexcept { |
| 39 | if (offset + sizeof(T) > length) { |
| 40 | return false; |
| 41 | } else { |
| 42 | return true; |
| 43 | } |
| 44 | } |
| 45 | }; |
| 46 | |
| 47 | #endif //RPCPROTOCOL_RVA_H |
nothing calls this directly
no outgoing calls
no test coverage detected