Skip to content

Commit

Permalink
Merge pull request #73 from apr3vau/master
Browse files Browse the repository at this point in the history
Fix read/write-binary-type warnings under Lispworks
  • Loading branch information
j3pic committed Apr 2, 2024
2 parents 171a3ac + 0f1ca19 commit bf920bc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion binary-1.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -825,6 +825,8 @@ bindings of all the relevant special variables."



(declaim (inline read-binary-type write-binary-type))

(defun read-binary-type (type stream &key (byte-order :little-endian) align element-align)
"Read a value of type TYPE from the STREAM. TYPE is any type supported by the DEFBINARY macro."
(read/write-binary-type :read type stream :byte-order byte-order
Expand All @@ -840,7 +842,6 @@ DEFBINARY macro."
:align align :element-align element-align))


(declaim (inline read-binary-type write-binary-type))

(defparameter debug-data nil)

Expand Down

0 comments on commit bf920bc

Please sign in to comment.