mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 08:25:35 +00:00
COMMON: Remove explicit ctors and copy assignment operator
They're equivalent to the implicit ones anyway.
This commit is contained in:
parent
51935a8569
commit
2aba99819a
@ -45,12 +45,6 @@ class Queue {
|
||||
// typedef T value_type;
|
||||
|
||||
public:
|
||||
Queue<T>() : _impl() {}
|
||||
Queue<T>(const Queue<T> &queue) : _impl(queue._impl) {}
|
||||
#ifdef USE_CXX11
|
||||
Queue<T> &operator=(const Queue<T> &other) = default; // FIXME: This may need replacing with custom copy operator code
|
||||
#endif
|
||||
|
||||
bool empty() const {
|
||||
return _impl.empty();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user