Delen via


Compilerfout C2012

ontbrekende naam na '<'

Remarks

Een #include richtlijn ontbreekt aan de vereiste bestandsnaam.

Example

In het volgende voorbeeld wordt C2012 gegenereerd:

// C2012.cpp
#include <   // C2012 include the filename to resolve

Possible resolution:

// C2012b.cpp
// compile with: /c
#include <stdio.h>