Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 525 Bytes

compiler-error-c2448.md

File metadata and controls

24 lines (19 loc) · 525 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Error C2448
Compiler Error C2448
11/04/2016
C2448
C2448
e255df3c-f861-4b4d-a193-8768cef061a5

Compiler Error C2448

'identifier' : function-style initializer appears to be a function definition

The function definition is incorrect.

This error can be caused by an old-style C-language formal list.

The following sample generates C2448:

// C2448.cpp
void func(c)
   int c;
{}   // C2448