Changes between Version 21 and Version 22 of doc/tec/developerrules/palmstandard


Ignore:
Timestamp:
Jun 28, 2019 6:25:55 AM (6 years ago)
Author:
gronemeier
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • doc/tec/developerrules/palmstandard

    v21 v22  
    8383In the code, use this syntax (starting at first character of a line):\\
    8484{{{
    85 #if defined(__parallel)
     85#if defined( __parallel )
    8686    some code
    8787#endif
     
    8989together with the standard logical operators {{{!}}} (instead of .NOT.), {{{||}}} (instead of .OR.), {{{&&}}} (instead of .AND.), e.g.
    9090{{{
    91 #if ! defined(__parallel) && (__netcdf)
     91#if ! defined( __parallel ) && ( __netcdf )
    9292}}}
    9393