From 50d1864cfacda0d50de5aa728a6d8d55cbc8b399 Mon Sep 17 00:00:00 2001 From: Julien Lamy Date: Sun, 15 Oct 2023 10:37:15 +0200 Subject: [PATCH] Fix symbol ambiguity --- wrappers/python/sycomore.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wrappers/python/sycomore.cpp b/wrappers/python/sycomore.cpp index 3e027a5..e2f19a5 100644 --- a/wrappers/python/sycomore.cpp +++ b/wrappers/python/sycomore.cpp @@ -61,5 +61,6 @@ PYBIND11_MODULE(_sycomore, _sycomore) }, "Generate evenly-spaced samples"); - _sycomore.def("round", round, "Round to x nearest multiple of r"); + _sycomore.def( + "round", sycomore::round, "Round to x nearest multiple of r"); }