summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2022-06-22 08:30:43 +1000
committer Vas Crabb <vas@vastheman.com>2022-06-22 08:30:43 +1000
commitecc13b548e9de3fd7b7c8b5cdc2ed046c778d931 (patch)
tree6848d818227f76eb725aed396d8b511e5401ab00 /src/lib
parentd950be1132b9fbe7a3b126cdeb76d674f67aae00 (diff)
bus/nubus: Implemented Spectrum/8 oscillator selection and vertical count read.
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/netlist/plib/ptimed_queue.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/netlist/plib/ptimed_queue.h b/src/lib/netlist/plib/ptimed_queue.h
index 35f9f9a6b54..495a8c89a89 100644
--- a/src/lib/netlist/plib/ptimed_queue.h
+++ b/src/lib/netlist/plib/ptimed_queue.h
@@ -89,10 +89,10 @@ namespace plib {
constexpr std::size_t capacity() const noexcept { return m_list.capacity() - 1; }
constexpr bool empty() const noexcept { return (m_end == &m_list[1]); }
- template<bool KEEPSTAT, typename... Args>
+ template <bool KEEPSTAT, typename... Args>
constexpr void emplace (Args&&... args) noexcept;
- template<bool KEEPSTAT>
+ template <bool KEEPSTAT>
constexpr void push(T && e) noexcept;
constexpr void pop() noexcept { --m_end; }
@@ -138,7 +138,7 @@ namespace plib {
};
template <class A, class T>
- template<bool KEEPSTAT, typename... Args>
+ template <bool KEEPSTAT, typename... Args>
inline constexpr void timed_queue_linear<A, T>::emplace (Args&&... args) noexcept
{
T * i(m_end);
@@ -165,7 +165,7 @@ namespace plib {
}
template <class A, class T>
- template<bool KEEPSTAT>
+ template <bool KEEPSTAT>
inline constexpr void timed_queue_linear<A, T>::push(T && e) noexcept
{
#if 0
@@ -270,7 +270,7 @@ namespace plib {
std::size_t capacity() const noexcept { return m_list.capacity(); }
bool empty() const noexcept { return &m_list[0] == m_end; }
- template<bool KEEPSTAT, typename... Args>
+ template <bool KEEPSTAT, typename... Args>
void emplace(Args&&... args) noexcept
{
*m_end++ = T(std::forward<Args>(args)...);