Skip to content

Commit 2a46e4c

Browse files
committed
fix(core) fix missing import in multi_buffer.mpp
1 parent edb7e58 commit 2a46e4c

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

modules/stormkit/core/containers/multi_buffer.mpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ export module stormkit.core:containers.multi_buffer;
1111

1212
import std;
1313

14-
import :meta;
15-
import :typesafe;
16-
import :functional;
14+
import :meta.traits;
15+
import :typesafe.integer;
16+
import :functional.monadic;
17+
import :utils.tags;
1718

1819
namespace stdr = std::ranges;
1920
namespace stdv = std::views;

modules/stormkit/core/containers/shmbuffer.mpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@ export module stormkit.core:containers.shmbuffer;
1212

1313
import std;
1414

15-
import :typesafe;
16-
import :functional;
15+
import :typesafe.integer;
16+
import :typesafe.byte;
17+
import :functional.monadic;
1718
import :utils.contract;
1819

1920
export namespace stormkit { inline namespace core {

0 commit comments

Comments
 (0)