mu: fix clang compilation

This commit is contained in:
Dirk-Jan C. Binnema
2020-01-24 00:21:53 +02:00
parent 72e67ca389
commit e119ac919b
5 changed files with 11 additions and 12 deletions

View File

@ -22,8 +22,6 @@
#include <string>
#include <vector>
#include <ostream>
#include "utils/mu-error.hh"
@ -79,8 +77,6 @@ struct Node {
*/
Node parse(const std::string& expr);
} // Sexp
static inline std::ostream&
operator<<(std::ostream& os, Sexp::Type id)
{
@ -110,6 +106,10 @@ operator<<(std::ostream& os, const Sexp::Node& node)
return os;
}
} // Sexp
} // Mu
#endif /* MU_SEXP_PARSER_HH__ */