Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 881 Bytes

compiler-warning-level-3-c4641.md

File metadata and controls

33 lines (26 loc) · 881 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 3) C4641
Compiler Warning (level 3) C4641
11/04/2016
C4641
C4641
28fe5c3e-6039-42da-9100-1312b5b15aea

Compiler Warning (level 3) C4641

XML document comment has an ambiguous cross reference

The compiler was unable to unambiguously resolve a reference. To resolve this warning, specify the parameter information necessary to make the reference unambiguous.

For more information, see XML Documentation.

Example

The following sample generates C4641.

// C4641.cpp
// compile with: /W3 /doc /clr /c

/// <see cref="f" />   // C4641
// try the following line instead
// /// <see cref="f(int)" />
public ref class GR {
public:
   void f( int ) {}
   void f( char ) {}
};