From 2dadf47fe36636c499a5827f25580acff8bd932d Mon Sep 17 00:00:00 2001 From: Christopher Tenter Date: Sun, 25 Oct 2015 19:03:04 +0100 Subject: [PATCH] const correctness for polyline function --- ObjectTypes/PolyLine/PolyLineT.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ObjectTypes/PolyLine/PolyLineT.cc b/ObjectTypes/PolyLine/PolyLineT.cc index a48d40e33..68bc173e8 100644 --- a/ObjectTypes/PolyLine/PolyLineT.cc +++ b/ObjectTypes/PolyLine/PolyLineT.cc @@ -2282,7 +2282,7 @@ void PolyLineT:: if (_property_handle) { - CustomProperty* p = custom_prop(_property_handle); + const CustomProperty* p = custom_prop(_property_handle); unsigned int offset = p->prop_size * _i; -- GitLab