Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 582 Bytes

compiler-error-c2541.md

File metadata and controls

27 lines (22 loc) · 582 Bytes
descriptiontitlems.datef1_keywordshelpviewer_keywordsms.assetid
Learn more about: Compiler Error C2541
Compiler Error C2541
11/04/2016
C2541
C2541
ed95180f-00df-4e62-a8e9-1b6dab8281bf

Compiler Error C2541

'delete' : delete : cannot delete objects that are not pointers

The delete operator was used on an object that is not a pointer.

The following sample generates C2541:

// C2541.cppintmain() { int i; delete i; // C2541 i not a pointer// OKint *ip = newint; delete ip; }
close