I saw some third-party source code with comments in the style of /*M ... M*/ . But what does "M" mean? (Perhaps it is used with some kind of version control or code documentation system (e.g. doxygen)?)
I saw this in many (if not all) source files in opencv.
You can view the Itseez opencv repository under GitHub by clicking here .
A. I forget to mention, the comment style seems to exist only in the main file, and it seems to be announcing the license.
An example :
/*M/////////////////////////////////////////////////////////////////////////////////////// // // IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. // // By downloading, copying, installing or using the software you agree to this license. // If you do not agree to this license, do not download, install, // copy or use the software. // // // License Agreement // For Open Source Computer Vision Library [...] // //M*/
source share