Skip to content

Commit

Permalink
Fix alignMethod rendering, remove spurious log message
Browse files Browse the repository at this point in the history
  • Loading branch information
keynmol committed Jun 22, 2024
1 parent a829ca3 commit d42916e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/bindgen/src/main/scala/render/struct.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ def struct(struct: Def.Struct, line: Appender)(using
)
true

info(s"Hints: ${structType.hints}")
val finalStructType =
if structIsOpaque then structArrayType(rewrittenStructType)
else rewrittenStructType
Expand Down Expand Up @@ -217,4 +216,4 @@ def align(offset: Int, alignment: Int) = {
else alignment - (offset & alignmentMask)
offset + padding
}
""".trim().linesIterator
""".trim().linesIterator.toList

0 comments on commit d42916e

Please sign in to comment.