瀏覽代碼

Increase UA_DataType::binaryEncodingId from 16 to 32 bits.

Wolfgang Braun 4 年之前
父節點
當前提交
4b4e462dc0
共有 1 個文件被更改,包括 1 次插入1 次删除
  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;
 };