Skip to content

Latest commit

 

History

History
24 lines (20 loc) · 682 Bytes

compiler-warning-level-1-c4163.md

File metadata and controls

24 lines (20 loc) · 682 Bytes
description title ms.date f1_keywords helpviewer_keywords ms.assetid
Learn more about: Compiler Warning (level 1) C4163
Compiler Warning (level 1) C4163
11/04/2016
C4163
C4163
b08413fd-03fc-4f41-9167-a98976ac12f2

Compiler Warning (level 1) C4163

'identifier' : not available as an intrinsic function

The specified function cannot be used as an intrinsic function. The compiler ignores the invalid function name.

The following sample generates C4163:

// C4163.cpp
// compile with: /W1 /LD
#include <math.h>
#pragma intrinsic(mysin)   // C4163
// try the following line instead
// #pragma intrinsic(sin)