You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sr...@apache.org on 2019/12/06 09:52:33 UTC

[plc4x-build-tools] 01/01: added byte as simple base type

This is an automated email from the ASF dual-hosted git repository.

sruehl pushed a commit to branch feature/ams_ads_mpsec
in repository https://gitbox.apache.org/repos/asf/plc4x-build-tools.git

commit dcece4d5c853207591fc136e3844a7134c532e21
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Fri Dec 6 10:48:30 2019 +0100

    added byte as simple base type
---
 .../plugins/codegenerator/types/references/SimpleTypeReference.java      | 1 +
 1 file changed, 1 insertion(+)

diff --git a/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/references/SimpleTypeReference.java b/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/references/SimpleTypeReference.java
index 834033d..d01bbfc 100644
--- a/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/references/SimpleTypeReference.java
+++ b/code-generation/types-base/src/main/java/org/apache/plc4x/plugins/codegenerator/types/references/SimpleTypeReference.java
@@ -28,6 +28,7 @@ public interface SimpleTypeReference extends TypeReference {
     enum SimpleBaseType {
 
         BIT,
+        BYTE,
         UINT,
         INT,
         FLOAT,