Files
mu4e/lib
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
2020-06-27 17:07:00 +03:00
2020-05-17 14:53:18 +03:00
2020-05-12 23:56:55 +02:00
2020-07-25 16:46:47 +02:00
2020-05-26 19:22:41 +03:00
2020-02-21 19:29:27 +02:00
2020-06-27 17:07:00 +03:00
2020-07-13 21:43:59 +03:00
2020-05-30 13:29:44 +03:00
2020-05-30 13:29:44 +03:00
2020-04-20 00:01:07 +03:00
2020-06-27 17:07:00 +03:00
2020-07-25 16:46:47 +02:00