build: fix some compiler warnings

This commit is contained in:
Dirk-Jan C. Binnema
2022-06-18 14:35:01 +03:00
parent 1f9172a008
commit cade7493fd
7 changed files with 18 additions and 14 deletions

View File

@ -415,6 +415,9 @@ operator<<(std::ostream& os, Sexp::Type id)
case Sexp::Type::Symbol:
os << "symbol";
break;
case Sexp::Type::Raw:
os << "raw";
break;
case Sexp::Type::Empty:
os << "empty";
break;

View File

@ -50,8 +50,6 @@
#include "mu-error.hh"
#include "mu-option.hh"
#include "message/mu-message-file.hh"
using namespace Mu;
namespace {