From 7218c9e9ae7781dc904bae1ff2dd07f0a164e22d Mon Sep 17 00:00:00 2001 From: "Justin R. Wilson" Date: Wed, 20 Mar 2024 09:59:22 -0400 Subject: [PATCH] Shapes IDL doesn't match interoperability IDL Problem ------- The Shapes IDL doesn't match the interoperability IDL which is causing a lot of test failures. Solution -------- Update the IDL to match. --- examples/DCPS/ishapes/ShapeType.idl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/examples/DCPS/ishapes/ShapeType.idl b/examples/DCPS/ishapes/ShapeType.idl index 61c4618fc32..902762fb82f 100644 --- a/examples/DCPS/ishapes/ShapeType.idl +++ b/examples/DCPS/ishapes/ShapeType.idl @@ -4,11 +4,12 @@ module org { module demo { @topic + @appendable struct ShapeType { - @key string color; - long x; - long y; - long shapesize; + @key string<128> color; + int32 x; + int32 y; + int32 shapesize; }; };