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:
authorHans Goudey <h.goudey@me.com>2021-04-20 00:57:02 +0300
committerHans Goudey <h.goudey@me.com>2021-04-20 00:57:02 +0300
commit6b44605cec1d0fe195ffcd97317a0ff4f949a05b (patch)
treebc1729fd8ab5f6be6ac17cfeda6968645a77c0a1 /source/blender/blenlib
parent2e76c3565d145a8e4e82644523663062c1b67894 (diff)
parent68cbf0a2be8a6636ab3c05aa1d48b17b29e6f791 (diff)
Merge branch 'master' into geometry-nodes-curve-support
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_stack.hh2
-rw-r--r--source/blender/blenlib/BLI_vector.hh2
2 files changed, 2 insertions, 2 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) {
diff --git a/source/blender/blenlib/BLI_vector.hh b/source/blender/blenlib/BLI_vector.hh
index c4afbee57fc..ade0d7cc611 100644
--- a/source/blender/blenlib/BLI_vector.hh
+++ b/source/blender/blenlib/BLI_vector.hh
@@ -443,7 +443,7 @@ class Vector {
{
this->append_as(std::move(value));
}
- /* This is similar to std::vector::emblace_back. */
+ /* This is similar to `std::vector::emplace_back`. */
template<typename... ForwardValue> void append_as(ForwardValue &&... value)
{
this->ensure_space_for_one();