diff options
author | Hubert Figuière <hub@figuiere.net> | 2017-03-26 12:54:38 -0400 |
---|---|---|
committer | Hubert Figuière <hub@figuiere.net> | 2017-03-26 12:54:54 -0400 |
commit | 0320c32a388964498911d7ebdec6561687d2f6c6 (patch) | |
tree | 1e5faebf548e575c42d2ad58aaa5734f8a9b5e76 | |
parent | 983a8441f5d3c739aaa3350c04b3cdd7570e0f54 (diff) |
tests: missing includes causing breakage on macOS
-rw-r--r-- | exempi/tests/test-iterator.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/exempi/tests/test-iterator.cpp b/exempi/tests/test-iterator.cpp index e154cb7..32e0b14 100644 --- a/exempi/tests/test-iterator.cpp +++ b/exempi/tests/test-iterator.cpp @@ -38,8 +38,10 @@ #include <stdio.h> #include <string.h> -#include <string> +#include <array> #include <iostream> +#include <string> +#include <vector> #include <boost/test/minimal.hpp> #include <boost/format.hpp> |