Skip to content

Commit 7fe819a

Browse files
committed
Make the datafrag-size parameter optional since it wont be used in any tests
1 parent 8a60559 commit 7fe819a

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

srcCxx/shape_main.cxx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1169,13 +1169,11 @@ class ShapeApplication {
11691169

11701170
if (options->datafrag_size > 0) {
11711171
bool result = false;
1172-
#if defined(RTI_CONNEXT_DDS)
1172+
#if defined(RTI_CONNEXT_DDS)
11731173
result = configure_datafrag_size(dp_qos, options->datafrag_size);
1174-
#elif defined(RTI_CONNEXT_MICRO)
1174+
#elif defined(RTI_CONNEXT_MICRO)
11751175
result = configure_datafrag_size(options->datafrag_size);
1176-
#else
1177-
result = configure_datafrag_size();
1178-
#endif
1176+
#endif
11791177

11801178
if (!result) {
11811179
logger.log_message("Error configuring Data Fragmentation Size = "

0 commit comments

Comments
 (0)