RunCMake/CXXModules: fix partition importing syntax

Apparently GCC accepts the ill-formed prior syntax.
This commit is contained in:
Ben Boeckel
2022-07-26 12:25:42 -04:00
parent 5fc4e121a1
commit b5a6648c4b
2 changed files with 2 additions and 2 deletions
@@ -1,5 +1,5 @@
export module importable;
import importable : internal_partition;
import : internal_partition;
#include "internal-partitions_export.h"
@@ -1,5 +1,5 @@
export module importable;
export import importable : partition;
export import : partition;
#include "partitions_export.h"