diff options
| author | Lexi Winter <lexi@le-fay.org> | 2025-07-02 03:43:39 +0100 |
|---|---|---|
| committer | Lexi Winter <lexi@le-fay.org> | 2025-07-02 03:43:39 +0100 |
| commit | 06fafff8e9e9c096cc39bde0306caa53ad3a2351 (patch) | |
| tree | edfd6a5b08b77bc082e53b7b53a2e5f8dbbc8566 /nihil.ucl | |
| parent | 712edacbc75e6dc98c11b3c5f6c52f823c747e2f (diff) | |
| download | nihil-06fafff8e9e9c096cc39bde0306caa53ad3a2351.tar.gz nihil-06fafff8e9e9c096cc39bde0306caa53ad3a2351.tar.bz2 | |
move error and match to util
Diffstat (limited to 'nihil.ucl')
| -rw-r--r-- | nihil.ucl/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | nihil.ucl/integer.ccm | 2 | ||||
| -rw-r--r-- | nihil.ucl/type.ccm | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/nihil.ucl/CMakeLists.txt b/nihil.ucl/CMakeLists.txt index f0e7ec0..a4d69e6 100644 --- a/nihil.ucl/CMakeLists.txt +++ b/nihil.ucl/CMakeLists.txt @@ -7,7 +7,6 @@ target_link_libraries(nihil.ucl PRIVATE nihil.std nihil.core nihil.util - nihil.error ) target_sources(nihil.ucl @@ -47,6 +46,7 @@ if(NIHIL_TESTS) target_link_libraries(nihil.ucl.test PRIVATE nihil.std + nihil.util nihil.ucl Catch2::Catch2WithMain) diff --git a/nihil.ucl/integer.ccm b/nihil.ucl/integer.ccm index eb7fa6b..e3cf98d 100644 --- a/nihil.ucl/integer.ccm +++ b/nihil.ucl/integer.ccm @@ -7,7 +7,7 @@ export module nihil.ucl:integer; import nihil.std; import nihil.core; -import nihil.error; +import nihil.util; import :object; import :type; diff --git a/nihil.ucl/type.ccm b/nihil.ucl/type.ccm index 476546a..e7843d2 100644 --- a/nihil.ucl/type.ccm +++ b/nihil.ucl/type.ccm @@ -6,7 +6,7 @@ module; export module nihil.ucl:type; import nihil.std; -import nihil.error; +import nihil.util; namespace nihil::ucl { |
