Merge pull request #461 from c64kernal/dev_warn

Satisfy compiler warnings about unused parameters.
This commit is contained in:
Takahito Tejima 2015-04-30 21:45:53 -07:00
commit efb010557d

View File

@ -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();