summaryrefslogtreecommitdiff
path: root/src/cython/include/Alpha_complex_interface.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cython/include/Alpha_complex_interface.h')
-rw-r--r--src/cython/include/Alpha_complex_interface.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cython/include/Alpha_complex_interface.h b/src/cython/include/Alpha_complex_interface.h
index bcd2849b..f11a464b 100644
--- a/src/cython/include/Alpha_complex_interface.h
+++ b/src/cython/include/Alpha_complex_interface.h
@@ -42,11 +42,11 @@ class Alpha_complex_interface {
using Point_d = Dynamic_kernel::Point_d;
public:
- Alpha_complex_interface(std::vector<std::vector<double>>&points) {
+ Alpha_complex_interface(const std::vector<std::vector<double>>& points) {
alpha_complex_ = new Alpha_complex<Dynamic_kernel>(points);
}
- Alpha_complex_interface(std::string off_file_name, bool from_file = true) {
+ Alpha_complex_interface(const std::string& off_file_name, bool from_file = true) {
alpha_complex_ = new Alpha_complex<Dynamic_kernel>(off_file_name);
}