Files
mu4e/lib/utils
Dirk-Jan C. Binnema a4d6302dab mu-sexp: use std::vector instead of std::deque
Using deque gives compilation errors when compiling on
MacOS/clang (where it defaults to libc++ rather than gcc's libstdc++)

```
 #include <deque>
 struct Foo { std::deque<Foo> foos; };
 int  main() { Foo foo; }
```

So, let's use a vector instead; this is a drop-in replacement here, but
unfortunately in some future code...
2020-08-15 10:39:14 +03:00
..
2020-07-25 16:46:47 +02:00
2019-12-22 15:26:45 +02:00
2019-12-22 15:26:45 +02:00
2020-01-31 00:23:00 +02:00
2020-07-25 16:46:47 +02:00
2020-02-10 01:00:01 +02:00
2020-06-27 17:07:00 +03:00
2020-02-10 01:00:01 +02:00