From 8e935eb734b8be4ab3c9ed88a7c37e969f79b1da Mon Sep 17 00:00:00 2001 From: nwolek Date: Wed, 30 Dec 2015 11:51:50 -0500 Subject: [PATCH] Interpolator: adding note that single sample version of operator is likely to never be used. issue #71 --- include/core/JamomaInterpolator.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/core/JamomaInterpolator.h b/include/core/JamomaInterpolator.h index e1f371f..b8d293b 100644 --- a/include/core/JamomaInterpolator.h +++ b/include/core/JamomaInterpolator.h @@ -41,6 +41,7 @@ namespace Jamoma { public: static const int delay = 0; + // NW: will this version ever be used? constexpr T operator()(T x1) noexcept { return x1; } @@ -69,6 +70,7 @@ namespace Jamoma { public: static const int delay = 0; + // NW: will this version ever be used? constexpr T operator()(T x1) noexcept { return x1; }