We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6457c3 commit 0e1049bCopy full SHA for 0e1049b
timely/examples/columnar.rs
@@ -337,8 +337,8 @@ mod builder {
337
fn relax(&mut self) {
338
/// The caller is responsible for draining all contents; assert that we are empty.
339
/// The assertion is not strictly necessary, but it helps catch bugs.
340
- debug_assert!(self.current.is_empty());
341
- debug_assert!(self.pending.is_empty());
+ assert!(self.current.is_empty());
+ assert!(self.pending.is_empty());
342
*self = Self::default();
343
}
344
0 commit comments