Skip to content

Commit

Permalink
Shapes IDL doesn't match interoperability IDL
Browse files Browse the repository at this point in the history
Problem
-------

The Shapes IDL doesn't match the interoperability IDL which is causing
a lot of test failures.

Solution
--------

Update the IDL to match.
  • Loading branch information
jrw972 committed Mar 20, 2024
1 parent 0f79a06 commit 7218c9e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions examples/DCPS/ishapes/ShapeType.idl
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};

};
Expand Down

0 comments on commit 7218c9e

Please sign in to comment.