Skip to content

Commit

Permalink
can not put comment after #+:gl / #-:gl
Browse files Browse the repository at this point in the history
  • Loading branch information
k-okada committed Jul 17, 2024
1 parent 847722d commit e97fdd8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions euscollada/src/euscollada-robot.l
Original file line number Diff line number Diff line change
Expand Up @@ -107,14 +107,16 @@
:super gl::glbody
:slots (glvertices) ;; glvertices slot for backward compatibility
)
#-:gl ;; For euslisp without :gl features, may be we should put glbody/glvertices in irtgeo?
;; For euslisp without :gl features, may be we should put glbody/glvertices in irtgeo?
#-:gl
(defclass collada-body
:super body
;; glvertices slot for backward compatibility
;; aglvertices slot is defined in glbody
:slots (gl::aglvertices glvertices)
)
#-:gl ;; glbody defineds :gvertices methods
;; glbody defineds :gvertices methods
#-:gl
(defmethod collada-body
(:glvertices (&rest args) (user::forward-message-to glvertices args))
)
Expand Down

0 comments on commit e97fdd8

Please sign in to comment.