Fix -Wtemplate-id-cdtor

warning: template-id not allowed for constructor in C++20 [-Wtemplate-id-cdtor]
This commit is contained in:
Dale Glass 2024-05-04 14:28:54 +02:00
parent fe550aa69f
commit 9cb35541d3
3 changed files with 5 additions and 5 deletions

View file

@ -402,7 +402,7 @@ public:
public:
typedef T Data;
Data _data;
Cache<T>(const Data& data) : _data(data) {}
Cache(const Data& data) : _data(data) {}
static size_t _max;
class Vector {

View file

@ -387,8 +387,8 @@ public:
U t;
return std::make_shared<gpu::Buffer>(sizeof(U), (const gpu::Byte*) &t, sizeof(U));
}
~StructBuffer<T>() {};
StructBuffer<T>() : gpu::BufferView(makeBuffer<T>()) {}
~StructBuffer() {};
StructBuffer() : gpu::BufferView(makeBuffer<T>()) {}
T& edit() {

View file

@ -48,8 +48,8 @@ private:
template <class T, int MAX_NUM_SAMPLES> class MovingAverage {
public:
MovingAverage<T, MAX_NUM_SAMPLES>() {}
MovingAverage<T, MAX_NUM_SAMPLES>(const MovingAverage<T, MAX_NUM_SAMPLES>& other) {
MovingAverage() {}
MovingAverage(const MovingAverage<T, MAX_NUM_SAMPLES>& other) {
*this = other;
}
MovingAverage<T, MAX_NUM_SAMPLES>& operator=(const MovingAverage<T, MAX_NUM_SAMPLES>& other) {