aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/coroutine/engine/stack
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/coroutine/engine/stack')
-rw-r--r--library/cpp/coroutine/engine/stack/stack_guards.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/coroutine/engine/stack/stack_guards.h b/library/cpp/coroutine/engine/stack/stack_guards.h
index d2b5c9487d..3a7ef26481 100644
--- a/library/cpp/coroutine/engine/stack/stack_guards.h
+++ b/library/cpp/coroutine/engine/stack/stack_guards.h
@@ -69,7 +69,7 @@ namespace NCoro::NStack {
}
private:
- static constexpr TStringBuf Canary = "[ThisIsACanaryCoroutineStackGuardIfYouReadThisTheStackIsStillOK]";
+ static constexpr TStringBuf Canary = "[ThisIsACanaryCoroutineStackGuardIfYouReadThisTheStackIsStillOK]";
static_assert(Canary.size() == 64);
static constexpr uint64_t AlignedSize_ = (Canary.size() + PageSize - 1) & ~PageSizeMask;
};