Changes between Version 52 and Version 53 of Submitting/C


Ignore:
Timestamp:
Feb 6, 2022, 3:08:02 AM (2 years ago)
Author:
neteler
Comment:

Comments in C++-style are meanwhile fine, see https://github.com/OSGeo/grass/pull/2164#discussion_r799627649

Legend:

Unmodified
Added
Removed
Modified
  • Submitting/C

    v52 v53  
    144144=== Comments ===
    145145
    146 Don't use the C++ comment style! This confuses several compilers.
    147 Use instead:
    148 {{{
    149        /* C-comments */
    150 }}}
    151     If you want to comment code portions, use
     146If you want to comment code portions, use
    152147{{{
    153148       #ifdef notdef
     
    155150       #endif
    156151}}}
    157     This is safe comparing to nested `/* comments */`
    158 
    159     Functions in the library must be documented in doxygen style to get them into the programmer's manual (generate with `make pdfdocs` or `make htmldocs`). See source:grass/trunk/lib/gis/ for examples.
     152This is safe comparing to nested `/* comments */`
     153
     154Functions in the library must be documented in doxygen style to get them into the programmer's manual (generate with `make pdfdocs` or `make htmldocs`). See source:grass/trunk/lib/gis/ for examples.
    160155
    161156=== Documentation in Doxygen ===