1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-06-03 07:29:37 +00:00

FlightControl fix for #678. Improved doc.

This commit is contained in:
jespergravgaard 2023-04-04 13:18:58 +02:00
parent b85e6fc715
commit f2b9b5bde7

View File

@ -130,10 +130,10 @@ public class Initializers {
}
/**
* Convert as much as possible of a struct to constants.
* Convert a union designator initializer to a constant.
*
* @param unionInit The value list
* @param structType The struct type
* @param unionInit The union initializer
* @param structType The union type
* @param program The program
* @param source The source line
* @return The constantified value
@ -164,7 +164,6 @@ public class Initializers {
}
}
/**
* Convert as much as possible of a struct to constants.
*