Changes between Initial Version and Version 3 of Ticket #742


Ignore:
Timestamp:
08/09/17 17:07:32 (7 years ago)
Author:
arango
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #742

    • Property ResolutionFixed
    • Property Status newclosed
  • Ticket #742 – Description

    initial v3  
    66#endif
    77}}}
    8 ...is to undefine DIAGNOSTICS_BIO unless both BIO_FENNEL and HYPOXIA_SRM are defined.
     8...is to undefine '''DIAGNOSTICS_BIO''' unless both '''BIO_FENNEL''' and '''HYPOXIA_SRM''' are defined.
    99
    1010I suggest...
     
    1616...or its syllogistic equivalent.
    1717
     18----
     19
     20Oops, the '''defined''' is missing before '''HYPOXIA_SRM'''.  We need to have instead:
     21 {{{
     22#if defined DIAGNOSTICS_BIO && \
     23  !(defined BIO_FENNEL      || defined HYPOXIA_SRM)
     24#  undef DIAGNOSTICS_BIO
     25#endif
     26}}}
     27
     28