diff options
Diffstat (limited to 'tests/pager/driver.cxx')
-rw-r--r-- | tests/pager/driver.cxx | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/tests/pager/driver.cxx b/tests/pager/driver.cxx index 87c811d..6842cef 100644 --- a/tests/pager/driver.cxx +++ b/tests/pager/driver.cxx @@ -2,15 +2,28 @@ // copyright : Copyright (c) 2014-2017 Code Synthesis Ltd // license : MIT; see accompanying LICENSE file +#include <cassert> + +#ifndef __cpp_lib_modules #include <ios> // ios_base::failure #include <vector> #include <string> #include <utility> // move() -#include <cassert> #include <sstream> #include <iostream> - -#include <libbutl/pager.hxx> +#endif + +// Other includes. + +#ifdef __cpp_modules +#ifdef __cpp_lib_modules +import std.core; +import std.io; +#endif +import butl.pager; +#else +#include <libbutl/pager.mxx> +#endif using namespace std; using namespace butl; |