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:32 UTC

[plc4x-build-tools] branch feature/ams_ads_mpsec created (now dcece4d)

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

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


      at dcece4d  added byte as simple base type

This branch includes the following new commits:

     new dcece4d  added byte as simple base type

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



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

Posted by sr...@apache.org.
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,