Skip to content

Commit

Permalink
Revise code gen for built-in types
Browse files Browse the repository at this point in the history
  • Loading branch information
bocchino committed Mar 7, 2024
1 parent 1a5ca12 commit 51eb476
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ object CppWriterState {
* default values */
val zero: Value.Integer = Value.Integer(0)
val builtInTypes: Map[String,Value.Integer] = Map(
"FwBuffSizeType" -> zero,
"FwChanIdType" -> zero,
"FwDpIdType" -> zero,
"FwDpPriorityType" -> zero,
Expand All @@ -211,11 +210,12 @@ object CppWriterState {
"FwOpcodeType" -> zero,
"FwPacketDescriptorType" -> zero,
"FwPrmIdType" -> zero,
"FwSignedSizeType" -> zero,
"FwSizeStoreType" -> zero,
"FwSizeType" -> zero,
"FwTimeBaseStoreType" -> zero,
"FwTimeContextStoreType" -> zero,
"FwTlmPacketizeIdType" -> zero,
"POINTER_CAST" -> zero,
)

}

0 comments on commit 51eb476

Please sign in to comment.