Skip to content

Commit

Permalink
fix: modular test error
Browse files Browse the repository at this point in the history
  • Loading branch information
jean-roland committed Dec 20, 2024
1 parent 8ea1e65 commit 4caad5f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/session/queryable.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,5 +269,8 @@ void _z_flush_session_queryable(_z_session_t *zn) {

_z_session_mutex_unlock(zn);
}
#else // Z_FEATURE_QUERYABLE == 0

#endif
void _z_queryable_cache_invalidate(_z_session_t *zn) { _ZP_UNUSED(zn); }

#endif // Z_FEATURE_QUERYABLE == 1
2 changes: 2 additions & 0 deletions src/session/subscription.c
Original file line number Diff line number Diff line change
Expand Up @@ -350,4 +350,6 @@ z_result_t _z_trigger_liveliness_subscriptions_undeclare(_z_session_t *zn, _z_ke
return _Z_RES_OK;
}

void _z_subscription_cache_invalidate(_z_session_t *zn) { _ZP_UNUSED(zn); }

#endif // Z_FEATURE_SUBSCRIPTION == 1

0 comments on commit 4caad5f

Please sign in to comment.