Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 695 Bytes

compiler-warning-level-3-c4636.md

File metadata and controls

33 lines (27 loc) · 695 Bytes
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
C4636
C4636
59112a0f-850f-41c6-bd84-8ae8dc84706a

Compiler Warning (level 3) C4636

XML document comment applied to 'construct': tag requires non-empty '' attribute.

A tag, such as cref, did not have a value.

Example

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);
};