mirror of
https://github.com/PixarAnimationStudios/OpenSubdiv
synced 2025-01-14 02:10:18 +00:00
Merge pull request #461 from c64kernal/dev_warn
Satisfy compiler warnings about unused parameters.
This commit is contained in:
commit
efb010557d
@ -72,8 +72,8 @@ public:
|
||||
|
||||
private:
|
||||
// Non-copyable:
|
||||
StackBuffer(const StackBuffer<TYPE,SIZE> & source) { }
|
||||
StackBuffer& operator=(const StackBuffer<TYPE,SIZE> & source) { }
|
||||
StackBuffer(const StackBuffer<TYPE,SIZE> &) { }
|
||||
StackBuffer& operator=(const StackBuffer<TYPE,SIZE> &) { return *this; }
|
||||
|
||||
void allocate(size_type capacity);
|
||||
void deallocate();
|
||||
|
Loading…
Reference in New Issue
Block a user