summaryrefslogtreecommitdiff
path: root/zen/string_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/string_base.h')
-rw-r--r--zen/string_base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/string_base.h b/zen/string_base.h
index 0e3bbdd3..c134a6fc 100644
--- a/zen/string_base.h
+++ b/zen/string_base.h
@@ -171,7 +171,7 @@ private:
Descriptor(int rc, size_t len, size_t cap) :
length (static_cast<std::uint32_t>(len)),
capacity(static_cast<std::uint32_t>(cap)),
- refCount(rc) { assert_static(ATOMIC_INT_LOCK_FREE == 2); } //2: "the types are always lock-free"
+ refCount(rc) { assert_static(ATOMIC_INT_LOCK_FREE == 2); } //2: "the types are always lock-free"
std::uint32_t length;
std::uint32_t capacity; //allocated size without null-termination
bgstack15