Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 486 Bytes

compiler-error-c2095.md

File metadata and controls

15 lines (12 loc) · 486 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2095
Compiler Error C2095
11/04/2016
C2095
C2095
44f8ada1-974f-4e81-a408-33ac6695aa53

Compiler Error C2095

'function' : actual parameter has type 'void' : parameter 'number'

The parameter passed to the function is type void, which is not allowed. Use a pointer to void ( void *) instead.

The number indicates which parameter is void.