Copy constructor (with intended "move semantics" as internal state is shared, should not rely on using the rhs after copying). Construct empty buffered input.
| 952 | /// Copy constructor (with intended "move semantics" as internal state is shared, should not rely on using the rhs after copying). |
| 953 | /// Construct empty buffered input. |
| 954 | BufferedInput() |
| 955 | : |
| 956 | Input(), |
| 957 | len_(0), |
| 958 | pos_(0) |
| 959 | { } |
| 960 | /// Copy constructor. |
| 961 | BufferedInput(const BufferedInput& input) |
| 962 | : |
nothing calls this directly
no outgoing calls
no test coverage detected