diff options
author | Colin Okay <colin@cicadas.surf> | 2022-06-30 07:35:16 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-06-30 07:35:16 -0500 |
commit | e0fc8f0f7a8b4756226cfb5e1c7581e411420228 (patch) | |
tree | 57213d8d2997e34d1ba674360b870d4223cd4908 /src/core-units/container.lisp | |
parent | 56b743bbfe56823bfe482a4f4e579512041918d2 (diff) |
[refactor] factored out affine from unit; made container a unit;
Diffstat (limited to 'src/core-units/container.lisp')
-rw-r--r-- | src/core-units/container.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core-units/container.lisp b/src/core-units/container.lisp index afa68b3..af01ff1 100644 --- a/src/core-units/container.lisp +++ b/src/core-units/container.lisp @@ -3,7 +3,7 @@ (in-package #:wheelwork) -(defclass/std container () +(defclass/std container (unit) ((units :with :a)) (:documentation "Just a list of units. Made into a class so that transformation affine transformations methods can be specialzied on |