mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 15:22:42 +02:00
Fix -Wtemplate-id-cdtor
warning: template-id not allowed for constructor in C++20 [-Wtemplate-id-cdtor]
This commit is contained in:
parent
fe550aa69f
commit
9cb35541d3
3 changed files with 5 additions and 5 deletions
|
@ -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 {
|
||||
|
|
|
@ -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() {
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue