diff options
author | Roland Reichwein <mail@reichwein.it> | 2023-01-05 18:56:10 +0100 |
---|---|---|
committer | Roland Reichwein <mail@reichwein.it> | 2023-01-05 18:56:10 +0100 |
commit | d2690b7c3639cc1555b34d002de782976cbb6845 (patch) | |
tree | 630a4d2c85001e52854e5b51a36728f1f9488d31 /statistics.h | |
parent | 15b6682b177dda1bc64384c7ff1a82e88917c2e5 (diff) |
Fix statistics (API), added auth test
Diffstat (limited to 'statistics.h')
-rw-r--r-- | statistics.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/statistics.h b/statistics.h index c38ef66..a8b4854 100644 --- a/statistics.h +++ b/statistics.h @@ -78,10 +78,10 @@ public: }; // Serialization and Deserialization as free functions -namespace Serialization { +namespace Reichwein::Serialization { template <class T> -Serialization::OArchive& operator& (Serialization::OArchive& ar, std::deque<T>& deque) +Reichwein::Serialization::OArchive& operator& (Reichwein::Serialization::OArchive& ar, std::deque<T>& deque) { uint64_t size { deque.size() }; @@ -95,7 +95,7 @@ Serialization::OArchive& operator& (Serialization::OArchive& ar, std::deque<T>& } template <class T> -Serialization::IArchive& operator& (Serialization::IArchive& ar, std::deque<T>& deque) +Reichwein::Serialization::IArchive& operator& (Reichwein::Serialization::IArchive& ar, std::deque<T>& deque) { uint64_t size {}; @@ -112,4 +112,4 @@ Serialization::IArchive& operator& (Serialization::IArchive& ar, std::deque<T>& return ar; } -} +} // namespace |