1
0
mirror of https://github.com/Zygo/bees.git synced 2025-05-17 21:35:45 +02:00

clang: fix struct/class declaration/definition mismatches

clang does not like a defined class to be declared as a struct.

Signed-off-by: Zygo Blaxell <bees@furryterror.org>
This commit is contained in:
Zygo Blaxell 2020-12-17 16:39:54 -05:00
parent b7b18d9fa1
commit 7ec19d1eff
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ namespace crucible {
template <class T>
class ProgressTracker {
class ProgressTrackerState;
struct ProgressTrackerState;
class ProgressHolderState;
public:
using value_type = T;

View File

@ -165,7 +165,7 @@ public:
T at(string idx) const;
friend ostream& operator<< <>(ostream &os, const BeesStatTmpl<T> &bs);
friend class BeesStats;
friend struct BeesStats;
};
using BeesRates = BeesStatTmpl<double>;