Browse Source

Increase UA_DataType::binaryEncodingId from 16 to 32 bits.

Wolfgang Braun 4 years ago
parent
commit
4b4e462dc0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      include/open62541/types.h

+ 1 - 1
include/open62541/types.h

@@ -869,7 +869,7 @@ struct UA_DataType {
     UA_UInt32 overlayable      : 1;  /* The type has the identical memory layout
                                       * in memory and on the binary stream. */
     UA_UInt32 membersSize      : 8;  /* How many members does the type have? */
-    UA_UInt32 binaryEncodingId : 16; /* NodeId of datatype when encoded as binary */
+    UA_UInt32 binaryEncodingId;      /* NodeId of datatype when encoded as binary */
     //UA_UInt16  xmlEncodingId;      /* NodeId of datatype when encoded as XML */
     UA_DataTypeMember *members;
 };