We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5c6b39 commit 8aee6cbCopy full SHA for 8aee6cb
src/common/point_source_panner.cpp
@@ -224,6 +224,8 @@ namespace ear {
224
return ret + 1;
225
}
226
227
+ PointSourcePanner::~PointSourcePanner() {}
228
+
229
PointSourcePannerDownmix::PointSourcePannerDownmix(
230
std::shared_ptr<PointSourcePanner> psp, Eigen::MatrixXd downmix)
231
: _psp(psp), _downmix(downmix){};
src/common/point_source_panner.hpp
@@ -116,6 +116,8 @@ namespace ear {
116
virtual boost::optional<Eigen::VectorXd> handle(
117
Eigen::Vector3d position) = 0;
118
virtual int numberOfOutputChannels() const = 0;
119
120
+ virtual ~PointSourcePanner();
121
};
122
123
/** @brief Wrapper around multiple regions.
0 commit comments