diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-05-03 16:09:03 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-05-03 16:09:03 +0200 |
commit | 04669106fb41d787e0686023dcce640fbe59865d (patch) | |
tree | 056d2fedf396006d6e243346ea8de689ddf23c08 /tests/prefix-map/driver.cxx | |
parent | 422f8cb7e03e9ba3cc95fde65585dcbd74aaa522 (diff) |
Partially dismantle modularization using Modules TS semantics
Diffstat (limited to 'tests/prefix-map/driver.cxx')
-rw-r--r-- | tests/prefix-map/driver.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/prefix-map/driver.cxx b/tests/prefix-map/driver.cxx index dc820a3..23e9e60 100644 --- a/tests/prefix-map/driver.cxx +++ b/tests/prefix-map/driver.cxx @@ -4,15 +4,15 @@ #include <cassert> -#ifndef __cpp_lib_modules +#ifndef __cpp_lib_modules_ts #include <string> #include <iostream> #endif // Other includes. -#ifdef __cpp_modules -#ifdef __cpp_lib_modules +#ifdef __cpp_modules_ts +#ifdef __cpp_lib_modules_ts import std.core; import std.io; #endif |