diff --git a/lib/utils/mu-sexp.hh b/lib/utils/mu-sexp.hh index 847eea70..f0aa27db 100644 --- a/lib/utils/mu-sexp.hh +++ b/lib/utils/mu-sexp.hh @@ -24,7 +24,6 @@ #include #include #include -#include #include #include "utils/mu-utils.hh" @@ -49,8 +48,9 @@ struct Sexp { */ Sexp():type_{Type::Empty}{} - /// Underlying data type for list - using Seq = std::deque; + // Underlying data type for list; we'd like to use std::dequeu here, + // but that does not compile with libc++ (it does with libstdc++) + using Seq = std::vector; /** * Make a sexp out of an s-expression string.