| 169 | |
| 170 | template <class StreamBuf, template <class T> class TypeTraits, bool IsMutable> |
| 171 | inline |
| 172 | void |
| 173 | ByteStream<StreamBuf, TypeTraits, IsMutable>::leaveDryRun() { |
| 174 | madlib_assert(mDryRun > 0, std::logic_error("Non-positive dry-mode " |
| 175 | "counter detected.")); |
| 176 | --mDryRun; |
| 177 | } |
| 178 | |
| 179 | // ByteStream<StreamBuf, Mutable> |
| 180 |