fix compilation error / clang warnings

This commit is contained in:
Dirk-Jan C. Binnema
2020-07-25 11:26:08 +03:00
parent 6cea9fcd71
commit 148c906d8a
8 changed files with 11 additions and 12 deletions

View File

@ -32,7 +32,6 @@
using namespace Mu;
constexpr auto MuLogDomain = "mu";
static bool MuLogInitialized = false;
static Mu::LogOptions MuLogOptions;
static std::ofstream MuStream;

View File

@ -176,8 +176,8 @@ struct Sexp {
size_t empty() const { return seq_.empty(); }
private:
friend class Sexp;
Seq seq_;
friend struct Sexp;
Seq seq_;
};
/**