description | title | ms.date | f1_keywords | helpviewer_keywords | ms.assetid | ||
---|---|---|---|---|---|---|---|
Learn more about: Compiler Warning (level 3) C4636 |
Compiler Warning (level 3) C4636 |
11/04/2016 |
|
|
59112a0f-850f-41c6-bd84-8ae8dc84706a |
XML document comment applied to 'construct': tag requires non-empty '' attribute.
A tag, such as cref
, did not have a value.
The following sample generates C4636.
// C4636.cpp
// compile with: /clr /doc /W3 /c
/// <see cref=''/>
// /// <see cref='System::Exception'/>
ref struct A { // C4636
void f(int);
};
// OK
/// <see cref='System::Exception'/>
ref struct B {
void f(int);
};