diff options
Diffstat (limited to 'src/lib/netlist/plib/pchrono.h')
-rw-r--r-- | src/lib/netlist/plib/pchrono.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/netlist/plib/pchrono.h b/src/lib/netlist/plib/pchrono.h index 629d7573239..e245e955665 100644 --- a/src/lib/netlist/plib/pchrono.h +++ b/src/lib/netlist/plib/pchrono.h @@ -184,7 +184,7 @@ namespace plib { }; - template< typename T, bool enabled_ = true> + template <typename T, bool enabled_ = true> struct timer { using type = typename T::type; @@ -269,10 +269,10 @@ namespace plib { // Performance tracking //============================================================ - template<bool enabled_> + template <bool enabled_> using pperftime_t = plib::chrono::timer<plib::chrono::exact_ticks, enabled_>; - template<bool enabled_> + template <bool enabled_> using pperfcount_t = plib::chrono::counter<enabled_>; } // namespace plib |