From 57ea362daa38ed0b05edf4b06dd00a61afb4ccc4 Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Tue, 21 Aug 2018 04:57:36 -0700 Subject: [PATCH] ircd::ctx: Fix stale comment. --- ircd/ctx.cc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ircd/ctx.cc b/ircd/ctx.cc index 09e16e0e6..803d5cc0e 100644 --- a/ircd/ctx.cc +++ b/ircd/ctx.cc @@ -571,9 +571,6 @@ ircd::ctx::this_ctx::stack_at_here() /// Throws interrupted if the currently running context was interrupted /// and clears the interrupt flag. -/// -/// Unlike most of this_ctx::, this function is a no-op if not currently -/// on a context. void ircd::ctx::this_ctx::interruptible(const bool &b) { @@ -593,9 +590,6 @@ ircd::ctx::this_ctx::interruptible(const bool &b) /// Throws interrupted if the currently running context was interrupted /// and clears the interrupt flag. -/// -/// Unlike most of this_ctx::, this function is a no-op if not currently -/// on a context. void ircd::ctx::this_ctx::interruptible(const bool &b, std::nothrow_t)