Skip to content

Commit

Permalink
Disable warnings that don't hold for our data
Browse files Browse the repository at this point in the history
  • Loading branch information
glguy committed Aug 24, 2023
1 parent f693f76 commit b356947
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions assist/bin/checks/interfaceChecks.pl
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@
%! check_INTERFACE is det.
%
% Performs all checks for INTERFACEs. Always succeeds, emits warnings.
check_INTERFACE(IFACE) :-
check_INTERFACE_no_dest_SYSTEM(IFACE);
check_INTERFACE_no_src_SYSTEM(IFACE).
check_INTERFACE(IFACE).
% check_INTERFACE_no_dest_SYSTEM(IFACE);
% check_INTERFACE_no_src_SYSTEM(IFACE).
6 changes: 3 additions & 3 deletions assist/bin/checks/srs_checks.pl
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,6 @@
% Performs all checks for SRS classes. Always succeeds, emits warnings.
check_SRS(SRS) :-
check_SRS_insertion_source(SRS);
check_SRS_Req_CSID_or_PIDS(SRS);
check_SRS_Req_description(SRS);
check_SubDD_Req_satisfies_SRS_Req(SRS).
check_SRS_Req_CSID_or_PIDS(SRS).
% check_SRS_Req_description(SRS);
% check_SubDD_Req_satisfies_SRS_Req(SRS).

0 comments on commit b356947

Please sign in to comment.