Compiler Warning (level 4) C4634

 

The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.

The latest version of this topic can be found at Compiler Warning (level 4) C4634.

XML document comment: cannot be applied: reason

XML documentation tags can not be applied to all C++ constructs. For example, you cannot add a documentation comment to a namespace or template.

For more information, see XML Documentation.

The following sample generates C4634.

// C4634.cpp  
// compile with: /W4 /doc /c  
/// This is a namespace.   // C4634  
namespace hello {  
   class MyClass  {};  
};  

The following sample generates C4634.

// C4634_b.cpp  
// compile with: /W4 /doc /c  
/// This is a template.   // C4634  
template <class T>  
class MyClass  {};  

Show: