aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2023-11-15 01:35:42 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2023-11-16 00:51:19 +0100
commit973a72ea96f936c7df892742229d195a5d3e72fe (patch)
tree360d9371ce6a5a01e3d30b120d7be13fe21c5053
parentFix coverage exceptions. (diff)
downloadcalp-973a72ea96f936c7df892742229d195a5d3e72fe.tar.gz
calp-973a72ea96f936c7df892742229d195a5d3e72fe.tar.xz
Remove unused assert module.
-rw-r--r--module/hnh/util/assert.scm9
1 files changed, 0 insertions, 9 deletions
diff --git a/module/hnh/util/assert.scm b/module/hnh/util/assert.scm
deleted file mode 100644
index 74715654..00000000
--- a/module/hnh/util/assert.scm
+++ /dev/null
@@ -1,9 +0,0 @@
-(define-module (hnh util assert)
- :use-module (rnrs base)
- :export (assert*)
- )
-
-(define-syntax assert*
- (syntax-rules ()
- ((_ assertion)
- (assert assertion))))