編譯器警告 (層級 4) C4634
XML 文件註解: 無法套用: 原因
XML 文件標記無法套用至所有 C++ 建構。 例如,您無法將文件註解加入命名空間或範本。
如需詳細資訊,請參閱 XML Documentation。
範例
下列範例會產生 C4634。
// C4634.cpp
// compile with: /W4 /doc /c
/// This is a namespace. // C4634
namespace hello {
class MyClass {};
};
下列範例會產生 C4634。
// C4634_b.cpp
// compile with: /W4 /doc /c
/// This is a template. // C4634
template <class T>
class MyClass {};