Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 950 Bytes

fatal-error-c1853.md

File metadata and controls

17 lines (13 loc) · 950 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Fatal Error C1853
Fatal Error C1853
11/04/2016
C1853
C1853
ceb9b4a5-92bf-4573-8a9f-3109cc7743ce

Fatal Error C1853

'filename' precompiled header file is from a previous version of the compiler, or the precompiled header is C++ and you are using it from C (or vice versa)

Possible causes:

  • The precompiled header was compiled with a previous compiler version. Try recompiling the header with the current compiler.

  • The precompiled header is C++ and you are using it from C. Try recompiling the header for use with C by specifying one of the /Tc compiler options, or changing the suffix of the source file to "c". For more information, see Two Choices for Precompiling Code.