| 28 | |
| 29 | template <class StreamBuf, template <class T> class TypeTraits, bool IsMutable> |
| 30 | void |
| 31 | ByteStream<StreamBuf, TypeTraits, IsMutable>::DryRun::leave() { |
| 32 | if (mIsIn) { |
| 33 | mStream.leaveDryRun(); |
| 34 | mIsIn = false; |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | |
| 39 | // ByteStream<StreamBuf, bool IsMutable> |