From a0c98837da9e88973cb857ee6fa0ad90d311dcf8 Mon Sep 17 00:00:00 2001 From: Bashir Sani <82951300+AlajeBash@users.noreply.github.com> Date: Fri, 10 Mar 2023 23:53:18 +0200 Subject: [PATCH 1/2] Updating the Point.fbs file I remove the Duplicate Message Definition by Merging the two Separate Files in to one File, and with this we will have a valid FlatBuffers schema with no duplicate message definitions. --- seerep-msgs/fbs/point.fbs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/seerep-msgs/fbs/point.fbs b/seerep-msgs/fbs/point.fbs index 0734f0215..c004bf9d8 100644 --- a/seerep-msgs/fbs/point.fbs +++ b/seerep-msgs/fbs/point.fbs @@ -1,6 +1,10 @@ namespace seerep.fb; +table Point2d { + x:double; + y:double; +} table Point { x:double; y:double; From 71bdecd7fc5dcf02764c395cd6fdff11474f98e0 Mon Sep 17 00:00:00 2001 From: Bashir Sani <82951300+AlajeBash@users.noreply.github.com> Date: Fri, 10 Mar 2023 23:55:35 +0200 Subject: [PATCH 2/2] Delete point2d.fbs No need for Point2d.fbs since we merge our two points files together --- seerep-msgs/fbs/point2d.fbs | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 seerep-msgs/fbs/point2d.fbs diff --git a/seerep-msgs/fbs/point2d.fbs b/seerep-msgs/fbs/point2d.fbs deleted file mode 100644 index 04dca31ba..000000000 --- a/seerep-msgs/fbs/point2d.fbs +++ /dev/null @@ -1,7 +0,0 @@ - -namespace seerep.fb; - -table Point2D { - x:double; - y:double; -}