| 124 | } |
| 125 | |
| 126 | bool BinaryReader::MoveBufferPosition(int32 move) |
| 127 | { |
| 128 | auto currPos = GetBufferPosition(); |
| 129 | if (currPos>0) |
| 130 | { |
| 131 | return SetBufferPosition(currPos + move); |
| 132 | } |
| 133 | |
| 134 | return false; |
| 135 | } |
| 136 | |
| 137 | |
| 138 | } // namespace core |
nothing calls this directly
no outgoing calls
no test coverage detected