C4401: Recursive comments not allowed

[WARNING]

Description

A recursive comment has been found (a comment with inside a comment).

Example
  /* /* nested comment */

  
Tips

Either correct the comment, use

  '#if 0'

  
  ...

  
  '#endif'

  

or the C++ like comment '\\':

  #if 0

  
    /* nested comment */

  
  #endif

  
  \\ /* /* nested comment */