Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-04-19 16:56:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-04-19 16:56:12 +0300
commit46a13482cb9dcd45d50283b397b1bfea71dc013b (patch)
treef5879e6b3a757c18ada46be10220cd50a4f0068f /source/blender/blenlib/BLI_stack.hh
parent33440760a6ed6f250aff8fbb2b01c094c612af23 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/blenlib/BLI_stack.hh')
-rw-r--r--source/blender/blenlib/BLI_stack.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_stack.hh b/source/blender/blenlib/BLI_stack.hh
index c20a9b9ecfa..d66316a95d9 100644
--- a/source/blender/blenlib/BLI_stack.hh
+++ b/source/blender/blenlib/BLI_stack.hh
@@ -232,7 +232,7 @@ class Stack {
{
this->push_as(std::move(value));
}
- /* This is similar to std::stack::emblace. */
+ /* This is similar to `std::stack::emplace`. */
template<typename... ForwardT> void push_as(ForwardT &&... value)
{
if (top_ == top_chunk_->capacity_end) {