mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
fix for building with Visual Studio (nw)
This commit is contained in:
parent
8ebd748b1b
commit
f6ba62f3e9
@ -151,7 +151,7 @@ template<typename T> T generic_fifo_device_base<T>::pop()
|
||||
}
|
||||
}
|
||||
|
||||
template<typename T> void generic_fifo_device_base<T>::push(T &&t)
|
||||
template<typename T> void generic_fifo_device_base<T>::push(T t)
|
||||
{
|
||||
// Are we already overflowed?
|
||||
if(!m_extra_values.empty())
|
||||
|
@ -104,7 +104,7 @@ public:
|
||||
|
||||
/* Generic push/pop */
|
||||
T pop();
|
||||
void push(T &&value);
|
||||
void push(T value);
|
||||
|
||||
/* Indicates whether the fifo is empty or full. Note that a pop
|
||||
on a full fifo does not ensure it will become non-full, there
|
||||
|
Loading…
Reference in New Issue
Block a user