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:
authorSybren A. Stüvel <sybren@blender.org>2020-09-04 18:14:41 +0300
committerSybren A. Stüvel <sybren@blender.org>2020-09-04 18:17:57 +0300
commitce67a9d39f0feef89bbb9f7835b52884921e66ed (patch)
tree89875732a691a2e96f304e90d9aa4f7381393126 /source/blender/freestyle/intern/stroke
parent587f75f009714d293efb2c7a13d479099a60a3fb (diff)
Cleanup: Clang-Tidy bugprone-copy-constructor-init fix
No expected functional changes.
Diffstat (limited to 'source/blender/freestyle/intern/stroke')
-rw-r--r--source/blender/freestyle/intern/stroke/Stroke.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/stroke/Stroke.cpp b/source/blender/freestyle/intern/stroke/Stroke.cpp
index 93a870c26ad..aa87dc473e2 100644
--- a/source/blender/freestyle/intern/stroke/Stroke.cpp
+++ b/source/blender/freestyle/intern/stroke/Stroke.cpp
@@ -423,7 +423,7 @@ Stroke::Stroke()
_rep = NULL;
}
-Stroke::Stroke(const Stroke &iBrother)
+Stroke::Stroke(const Stroke &iBrother) : Interface1D(iBrother)
{
for (vertex_container::const_iterator v = iBrother._Vertices.begin(),
vend = iBrother._Vertices.end();