From 685cee5bf3e33cb970dcab49383f25c401b1110f Mon Sep 17 00:00:00 2001 From: Susan Date: Wed, 12 Feb 2025 15:38:28 +0000 Subject: [PATCH] Codechange: const correctness --- src/tree_cmd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tree_cmd.cpp b/src/tree_cmd.cpp index 6ca047ab4f..99aff1f9de 100644 --- a/src/tree_cmd.cpp +++ b/src/tree_cmd.cpp @@ -196,7 +196,7 @@ struct BlobHarmonic * @param harmonics a std::vector of the harmonics data. * @param noOfSegments How many segments make up the polygon. */ -std::vector CreateStarShapedPolygon(const int radius, std::vector harmonics, const int noOfSegments) +std::vector CreateStarShapedPolygon(const int radius, const std::vector harmonics, const int noOfSegments) { std::vector result; @@ -208,7 +208,7 @@ std::vector CreateStarShapedPolygon(const int radius, std::vector