Changes between Initial Version and Version 3 of Ticket #742
- Timestamp:
- 08/09/17 17:07:32 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #742
- Property Resolution → Fixed
- Property Status new → closed
-
Ticket #742 – Description
initial v3 6 6 #endif 7 7 }}} 8 ...is to undefine DIAGNOSTICS_BIO unless both BIO_FENNEL and HYPOXIA_SRMare defined.8 ...is to undefine '''DIAGNOSTICS_BIO''' unless both '''BIO_FENNEL''' and '''HYPOXIA_SRM''' are defined. 9 9 10 10 I suggest... … … 16 16 ...or its syllogistic equivalent. 17 17 18 ---- 19 20 Oops, 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