error: expected a ";" icc 10.1 failure on Mac OS X 10.5.x with iPhone support [База знаний]
Introduction :
With the latest Mac OS* X 10.5.x and Xcode 3.1.x, support for the iPhone was added. This causes a compilation error with Intel compiler version 10.1. Below is an example of t ...
Posted: 2009-07-07 12:48:37 by Qale (Intel) | error, C++, OSX_AVAILABLE_STARTING, iphone, compiler, mac |
scs 5.0 error code 1205 2205 [Форумы] Hi all
I have installed SCS 5.0 with standard options. IIS, SQL server 2005 express and a microsoft CA. After that I have pre-provisioned two PCs with USB key.
When the PCs appear in the SCS i get t ...
Posted: 2008-11-06 05:34:38 by javieralmar | error, PKI, error code 2202, error code 1205, no rows |
Error while loading shared libraries: libiomp5.so [Форумы] I am trying to create an application in the following way:
ifort -fixed -extend_source 132 -openmp -fpscomp general -warn declarations -assume byterecl -threads -align all -heap-arrays file1.for file ...
Posted: 2008-11-11 02:59:20 by jirina | error, shared, libraries, libiomp5.so |
Diagnostic 11009: file format not recognized for xxxx [База знаний] ...
Posted: 2008-11-19 11:41:48 by Grishma Kotecha (Intel), Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1: last line of file ends without a newline [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 357: only nonstatic member functions may be virtual [База знаний] Cause:
A virtual function cannot be a static member, since a virtual function call relies on a specific object (base or derived) for determining which function to invoke (note: ISO C++ standard); wh ...
Posted: 2008-12-14 15:22:49 by Grishma Kotecha (Intel), Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1125: entity-kind "entity" is hidden by "entity" -- virtual function override intended? [База знаний] Cause:
Compiler encounters code in which one entity is hidden by another, this results in being no use of first entity.
Examples:
When a virtual base class function that is an entity gets overloa ...
Posted: 2008-12-14 15:33:10 by Grishma Kotecha (Intel), Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 279: controlling expression is constant [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 811: exception specification for implicitly declared virtual entity-kind "entity" is incompatible with that of overridden entity-kind "entity" [База знаний] Cause:
Overidden virtual functions should have exception-specification at least as restrictive as its own. A caller function might not be able to catch if derived threw an exception that was not ad ...
Posted: 2008-12-14 17:24:01 by Grishma Kotecha (Intel), Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 809: exception specification for virtual entity-kind "entity" is incompatible with that of overridden entity-kind "entity" [База знаний] Cause:
Overidden virtual functions should have exception-specification at least as restrictive as its own. A caller function might not be able to catch if derived threw an exception that was not adve ...
Posted: 2009-07-02 14:34:15 by Grishma Kotecha (Intel), Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 383: value copied to temporary, reference to temporary used [База знаний] Cause:
References should be instantiated to refer to a valid object or a function. When rvalues are used to initialize references, in certain cases compiler creates temporary objects and bind them to ...
Posted: 2008-12-24 14:13:44 by Grishma Kotecha (Intel), Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1563: taking the address of a temporary [База знаний] Cause:
Temporaries are destroyed as the last step in evaluating the full-expression that contains the point where they were created. In other words temporaries are destroyed when control reaches the ...
Posted: 2008-12-14 16:36:44 by Grishma Kotecha (Intel), Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 879: returning reference to local variable [База знаний] Cause:
A function returns address of local variable or object which gets destroyed when the function goes out of scope. The returning address is becomes invalid.
int& foo()
{
int temp;
...
Posted: 2008-12-24 14:56:10 by Grishma Kotecha (Intel), Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 2266: the declaration of the copy assignment operator for "type" has been suppressed because entity-kind "entity" is const [База знаний] Cause:
Compiler generates default assignment operator and copy constructor for class that does not define one. It is member-wise copy of the data members of an object. As const data members cannot be ...
Posted: 2008-12-14 15:01:45 by Grishma Kotecha (Intel), Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2267: the declaration of the copy assignment operator for "type" has been suppressed because entity-kind "entity" has reference type [База знаний] Cause:
Compiler generates default assignment operator and copy constructor for class that does not define one. It is memberwise copy of the data members of an object. As references cannot be modifie ...
Posted: 2008-12-14 15:55:51 by Grishma Kotecha (Intel), Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 409: entity-kind "entity" provides no initializer for: [База знаний] Cause:
The initializer list with constructor is the only way you can initialize the constant members of a class in C++."const" must already be defined before any user-written code is executed ( inclu ...
Posted: 2008-12-24 15:23:07 by Grishma Kotecha (Intel), Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1572: floating-point equality and inequality comparisons are unreliable [База знаний] Cause:
Floating point numbers are usually subject to rounding-off errors. So comparison involving floating point values may not be always be precise.
Example:
void foo()
{
float f1=10.2;
floa ...
Posted: 2008-12-24 14:47:16 by Grishma Kotecha (Intel), Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1738: base class dllexport/dllimport specification differs from that of the derived class [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1744: field of class type without a DLL interface used in a class with a DLL interface [База знаний] Cause:Microsoft* compilers warn when fields of certain non-DLL class types are used as members of classes with a DLL interface. Specifically, a warning is issued if the member type has a virtual fun ...
Posted: 2009-09-28 10:33:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 858: type qualifier on return type is meaningless [База знаний] Cause:
Compiler generates this warning when it finds a type qualifier applied to the return type of a function. C++ allows the type-qualifier to be const or volatile , but either qualifier applied ...
Posted: 2008-12-24 16:15:01 by Grishma Kotecha (Intel), Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 703: invalid alignment value [База знаний] Cause:
When a invalid value is encountered in the pack directive, compiler generates this warning.
Example:
#pragma pack ( 5 )
#pragma pack (push,5)
The value n in "#pragma pack(n)" ...
Posted: 2008-12-24 16:00:52 by Grishma Kotecha (Intel), Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1782: #pragma once is obsolete. Use #ifndef guard instead. [База знаний] ...
Posted: 2009-06-15 11:55:14 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 15029: loop was not vectorized: type conversion prohibits vectorization [База знаний] ...
Posted: 2008-12-22 14:04:39 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 24: invalid octal digit [База знаний] ...
Posted: 2008-12-22 14:03:16 by Jennifer Jiang (Intel) | error, warning, remark |
Error "the system cannot locate the object specified" [Форумы] I am new in using Intel FORTRAN 10 and 11 and I evaluate and probably switch permanently to Intel compiler from Compaq Visual FORTRAN.
When I'm lunching Intel FORTRAN 10.0.025 by choosing "create p ...
Posted: 2008-12-13 23:31:51 by aso.agile | error |
Diagnostic 1595: non-POD (Plain Old Data) class type passed through ellipsis [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 186: pointless comparison of unsigned integer with zero [База знаний] Cause:The compiler emits this diagnostic when an unsigned integer is compared with zero. Equality comparison with integer zero is allowed but ">=" and "<" comparasions become invalid.
Exam ...
Posted: 2009-06-26 16:50:20 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 1720: entity-kind "entity" has no corresponding member operator deletexxxx (to be called if an exception is thrown during initialization of an allocated object) [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 188: enumerated type mixed with another type [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 981: operands are evaluated in unspecified order [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Simple HelloWorld with Intel 11 (Fortran and C/C++) [Форумы] I am trying to create a simple helloworld.for and helloworld.cc to prove my Intel 11 compiiler is correctly installed on my RedHat linux box but get the following errors:
icc helloworld.ccld: can ...
Posted: 2008-12-18 14:12:23 by jayphallam | error, -limf, linking |
Diagnostic 13000: could not open message catalog file: xxxx [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 13001: unexpected xxxx message fill-in: xxxx [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 13002: unexpected xxxx message argument: xxxx [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 13003: message verification failed for: xxxx; reverting to internal message [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 13004: improper enable/disable argument [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 13005: diagnostic with id # not found [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 13006: unable to determine wchar string size [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 13007: unable to determine char string size [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 13008: could not open file 'xxxx' for diagnostic output, reverting to stderr [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 0: unknown error [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 2: last line of file ends with a backslash [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 3: #include file "xxxx" includes itself [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 4: out of memory [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 5: could not open source file "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 6: comment unclosed at end of file [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 7: unrecognized token [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 8: missing closing quote [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 9: nested comment is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 10: "#" not expected here [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 11: unrecognized preprocessing directive [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 12: parsing restarts here after previous syntax error [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 13: expected a file name [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 14: extra text after expected end of preprocessing directive [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 16: "xxxx" is not a valid source file name [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 17: expected a "]" [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 18: expected a ")" [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 19: extra text after expected end of number [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 20: identifier "xxxx" is undefined [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 21: type qualifiers are meaningless in this declaration [База знаний] ...
Posted: 2008-11-16 21:51:32 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 22: invalid hexadecimal number [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 23: integer constant is too large [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 25: quoted string should contain at least one character [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 26: too many characters in character constant [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 27: character value is out of range [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 28: expression must have a constant value [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 29: expected an expression [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 30: floating constant is out of range [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 31: expression must have integral type [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 32: expression must have arithmetic type [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 33: expected a line number [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 34: invalid line number [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 35: #error directive: xxxx [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 36: the #if for this directive is missing [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 37: the #endif for this directive is missing [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 38: directive is not allowed -- an #else has already appeared [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 39: division by zero [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 40: expected an identifier [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 41: expression must have arithmetic or pointer type [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 42: operand types are incompatible ("type" and "type") [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 44: expression must have pointer type [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 45: #undef may not be used on this predefined name [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 46: "entity" is predefined; attempted redefinition ignored [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 47: incompatible redefinition of macro "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 49: duplicate macro parameter name [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 50: "##" may not be first in a macro definition [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 51: "##" may not be last in a macro definition [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 52: expected a macro parameter name [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 53: expected a ":" [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 54: too few arguments in macro invocation [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 55: too many arguments in macro invocation [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 56: operand of sizeof may not be a function [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 57: this operator is not allowed in a constant expression [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 58: this operator is not allowed in a preprocessing expression [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 59: function call is not allowed in a constant expression [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 60: this operator is not allowed in an integral constant expression [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 61: integer operation result is out of range [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 62: shift count is negative [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 63: shift count is too large [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 64: declaration does not declare anything [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 65: expected a ";" [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 66: enumeration value is out of "int" range [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 67: expected a "}" [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 68: integer conversion resulted in a change of sign [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 69: integer conversion resulted in truncation [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 70: incomplete type is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 71: operand of sizeof may not be a bit field [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 75: operand of "*" must be a pointer [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 76: argument to macro is empty [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 77: this declaration has no storage class or type specifier [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 78: a parameter declaration may not have an initializer [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 79: expected a type specifier [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 80: a storage class may not be specified here [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 81: more than one storage class may not be specified [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 82: storage class is not first [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 83: type qualifier specified more than once [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 84: invalid combination of type specifiers [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 85: invalid storage class for a parameter [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 86: invalid storage class for a function [База знаний] ...
Posted: 2008-11-16 21:51:33 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 87: a type specifier may not be used here [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 88: array of functions is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 89: array of void is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 90: function returning function is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 91: function returning array is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 92: identifier-list parameters may only be used in a function definition [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 93: function type may not come from a typedef [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 94: the size of an array must be greater than zero [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 95: array is too large [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 96: a translation unit must contain at least one declaration [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 97: a function may not return a value of this type [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 98: an array may not have elements of this type [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 99: a declaration here must declare a parameter [База знаний] Cause:
This usually indicates a syntax error, i.e. a missing semicolon orreturn type. Look at the code right before the error.
Example:
void foo() // Oops, forgot the semicolon
void foo2();
...
Posted: 2009-09-28 08:36:55 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 101: "xxxx" has already been declared in the current scope [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 102: forward declaration of enum type is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 103: class is too large [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 104: struct or union is too large [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 105: invalid size for bit field [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 106: invalid type for a bit field [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 107: zero-length bit field must be unnamed [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 108: implicitly-signed bit field of length 1 [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 109: expression must have (pointer-to-) function type [База знаний]
Cause:
This error is reported when the compiler sees a function call but the identifier in thefunction call is not a function name or function pointer.
Example: void foo(void* p) { p(); ...
Posted: 2009-11-18 15:13:47 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 110: expected either a definition or a tag name [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 111: statement is unreachable [База знаний]
Cause
Statements at the given location will never be executed. This might occur due to incorrectly placed unconditional statements like return, goto or throw.
Example
void foo1( ...
Posted: 2008-12-27 12:39:00 by Grishma Kotecha (Intel), Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 112: expected "while" [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 114: entity-kind "entity" was referenced but not defined [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 115: a continue statement may only be used within a loop [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 116: a break statement may only be used within a loop or switch [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 117: non-void entity-kind "entity" should return a value [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 118: a void function may not return a value [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 119: cast to type "type" is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 120: return value type does not match the function type [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 121: a case label may only be used within a switch [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 122: a default label may only be used within a switch [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 123: case label value has already appeared in this switch [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 124: default label has already appeared in this switch [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 125: expected a "(" [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 126: expression must be an lvalue [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 127: expected a statement [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 128: loop is not reachable from preceding code [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 129: a block-scope function may only have extern storage class [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 130: expected a "{" [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 131: expression must have pointer-to-class type [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 132: expression must have pointer-to-struct-or-union type [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 133: expected a member name [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 134: expected a field name [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 135: entity-kind "entity" has no member "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 136: entity-kind "entity" has no field "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 137: expression must be a modifiable lvalue [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 138: taking the address of a register variable is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 139: taking the address of a bit field is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 140: too many arguments in function call [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 141: unnamed prototyped parameters not allowed when body is present [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 142: expression must have pointer-to-object type [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 143: program too large or complicated to compile [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 144: a value of type "type" cannot be used to initialize an entity of type "type" [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 145: entity-kind "entity" may not be initialized [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 146: too many initializer values [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 147: declaration is incompatible with entity-kind "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 148: entity-kind "entity" has already been initialized [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 149: a global-scope declaration may not have this storage class [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 150: a type name may not be redeclared as a parameter [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 151: a typedef name may not be redeclared as a parameter [База знаний] ...
Posted: 2008-11-16 21:51:34 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 152: conversion of nonzero integer to pointer [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 153: expression must have class type [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 154: expression must have struct or union type [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 155: old-fashioned assignment operator [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 156: old-fashioned initializer [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 157: expression must be an integral constant expression [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 158: expression must be an lvalue or a function designator [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 159: declaration is incompatible with previous "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 160: external name conflicts with external name of entity-kind "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 161: unrecognized #pragma [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 163: could not open temporary file "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 164: name of directory for temporary files is too long ("xxxx") [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 165: too few arguments in function call [База знаний] Cause:The Compiler issues the following error when a program calls a function with fewer number of arguments than the function needs: error #165: too few arguments in function callExamp ...
Posted: 2009-03-30 18:11:12 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 166: invalid floating constant [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 167: argument of type "type" is incompatible with parameter of type "type" [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 168: a function type is not allowed here [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 169: expected a declaration [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 170: pointer points outside of underlying object [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 171: invalid type conversion: "type" to "type" [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 172: external/internal linkage conflict with previous declaration [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 173: floating-point value does not fit in required integral type [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 174: expression has no effect [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 175: subscript out of range [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 177: entity-kind "entity" was declared but never referenced [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 178: "&" applied to an array has no effect [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 179: right operand of "%%" is zero [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 180: argument is incompatible with formal parameter [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 181: argument is incompatible with corresponding format string conversion [База знаний]
Cause: This warning is triggered by a printf or scanf format specifier that is not appropriate for the type of the variable being printed. Example:
#include <stdio.h>
int main() { un ...
Posted: 2009-11-18 16:23:47 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 182: could not open source file "xxxx" (no directories in search list) [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 183: type of cast must be integral [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 184: type of cast must be arithmetic or pointer [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 185: dynamic initialization in unreachable code [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 187: use of "=" where "==" may have been intended [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 189: error while writing xxxx file [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 190: invalid intermediate language file [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 191: type qualifier is meaningless on cast type [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 192: unrecognized character escape sequence [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 193: zero used for undefined preprocessing identifier "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 194: expected an asm string [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 195: an asm function must be prototyped [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 196: an asm function may not have an ellipsis [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 198: an asm function may not have a storage class [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 202: invalid combination of asm control specifiers [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 203: extra text after expected end of asm control line [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 205: this asm name is already defined [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 208: expected an asm type specification [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 219: old-style parameter declarations prohibited on asm functions [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 220: an ellipsis associated with an asm macro is ignored [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 221: expected an asm storage mode specifier [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 222: expected an asm formal parameter [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 223: asm macro parameter not specified on storage mode line [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 224: left brace unexpected in asm macro [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 225: right brace unexpected in asm macro [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 226: asm macro parameter must have basic or pointer type [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 227: Invalid asm macro storage specifier: "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 228: pragma has no corresponding begin [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 229: pragma does not match the corresponding begin at line xxxx [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 230: name does not match the corresponding begin at line xxxx [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 231: expected a "=" [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 232: parentheses do not match [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 233: unknown comment record type [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 234: 16-bit calling conventions are not supported [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 235: invalid calling convention [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 236: expected a string [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 237: invalid alignment constraint [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 238: use of the pack feature can cause mis-aligned accesses and result in inefficient code [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 239: floating point underflow [База знаний] ...
Posted: 2008-11-16 21:51:35 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 240: omission of ellipsis not a standard feature [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 241: cannot open argument file [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 242: unrecognized extension option [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 243: asm output file name must be specified if input is [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 244: invalid assertion: [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 245: invalid asm output file [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 246: cannot open asm output file [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 247: invalid operand for assembly type operator [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 248: too many C symbol replacements in an assembly language instruction [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 249: invalid constant in assembly language instruction [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 250: "on" or "off" expected [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 251: invalid use of null string; pragma ignored [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 252: expected an identifier or a string [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 253: initialization segment already defined [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 254: invalid initialization segment kind [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 255: text segment already specified [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 256: expected a function name [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 257: expected a structure reference [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 258: expected a class type tag name [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 259: run-time support for RTTI is disabled [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 260: xxxx not supported in this environment [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 261: inconsistent dll linkage [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 262: error while deleting file "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 263: integral value does not fit in required floating-point type [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 264: floating-point value does not fit in required floating-point type [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 265: floating-point operation result is out of range [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 266: function "xxxx" declared implicitly [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 267: the format string requires additional arguments [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 268: the format string ends before this argument [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 269: invalid format string conversion [База знаний]
Casue: This warning is triggered by a printf or scanf format specifier that is not appropriate for the type of the variable being printed.
Example:
#include <stdio.h>
int main() {
...
Posted: 2009-12-07 16:02:11 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 270: macro recursion [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 271: trailing comma is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 272: bit field cannot contain all values of the enumerated type [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 273: nonstandard type for a bit field [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 274: declaration is not visible outside of function [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 275: old-fashioned typedef of "void" ignored [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 276: left operand is not a struct or union containing this field [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 277: pointer does not point to struct or union containing this field [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 278: variable "xxxx" was declared with a never-completed type [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 280: selector expression is constant [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 281: invalid specifier on a parameter [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 282: invalid specifier outside a class declaration [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 283: duplicate specifier in declaration [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 284: a union is not allowed to have a base class [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 285: multiple access control specifiers are not allowed [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 286: class or struct definition is missing [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 287: qualified name is not a member of class "type" or its base classes [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 288: a nonstatic member reference must be relative to a specific object [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 289: a nonstatic data member may not be defined outside its class [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 290: entity-kind "entity" has already been defined [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 291: pointer to reference is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 292: reference to reference is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 293: reference to void is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 294: array of reference is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 295: reference entity-kind "entity" requires an initializer [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 296: expected a "," [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 297: type name is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 298: type definition is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 299: invalid redeclaration of type name "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 300: const entity-kind "entity" requires an initializer [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 301: "this" may only be used inside a nonstatic member function [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 302: constant value is not known [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 303: explicit type is missing ("int" assumed) [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 304: access control not specified ("xxxx" by default) [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 305: not a class or struct name [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 306: duplicate base class name [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 307: invalid base class [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 308: entity-kind "entity" (declared at line xxxx) is inaccessible [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 309: "entity" is ambiguous [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 310: old-style parameter list (anachronism) [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 311: declaration may not appear after executable statement in block [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 312: conversion to inaccessible base class "type" is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 317: improperly terminated macro invocation [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 319: name followed by "::" must be a class or namespace [База знаний]
Cause: This diagnostic occurs when a qualifier is not preceded by a class or namespace name. Example:
class C { static int i;};
typedef int Foo;
int Foo::i; // error -- Foo is not a cl ...
Posted: 2009-11-18 15:24:43 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 320: invalid friend declaration [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 321: a constructor or destructor may not return a value [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 322: invalid destructor declaration [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 323: declaration of a member with the same name as its class [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 324: global-scope qualifier (leading "::") is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 325: the global scope has no "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 326: qualified name is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 327: NULL reference is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 328: initialization with "{...}" is not allowed for object of type "type" [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 329: base class "type" is ambiguous [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 330: derived class "type" contains more than one instance of class "type" [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 331: cannot convert pointer to base class "type" to pointer to derived class "type" -- base class is virtual [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 332: no instance of constructor "entity" matches the argument list [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 333: copy constructor for class "type" is ambiguous [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 334: no default constructor exists for class "type" [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 335: "xxx" is not a nonstatic data member or base class of "type" [База знаний] Cause:The compiler issues diagnostic 335 when a name is used in a constructor member initializer list but the member does not exist as a data member name or as a base class constructor name.Example:cl ...
Posted: 2009-05-01 14:16:18 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 336: indirect nonvirtual base class is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 337: invalid union member -- class [База знаний] Cause:Non-static data members of a union may not be objects with a constructor,a destructor, or a user-defined assignment operator. Example:struct C { C();};union U { C c;};$ icc -c -V diag341.cppInte ...
Posted: 2009-05-28 11:28:54 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 339: invalid use of non-lvalue array [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 340: expected an operator [База знаний] ...
Posted: 2008-11-16 21:51:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 341: inherited member is not allowed [База знаний] Cause:This error occurs when you try to refer to a Base class inherited member with the Derived class qualifier.Example:
class Base {public: void f();};
class Derived: public Base {};
void Derived: ...
Posted: 2009-05-28 11:13:42 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 342: cannot determine which instance of entity-kind "entity" is intended [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 343: a pointer to a bound function may only be used to call the function [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 344: typedef name has already been declared (with same type) [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 345: entity-kind "entity" has already been defined [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 347: no instance of entity-kind "entity" matches the argument list [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 348: type definition is not allowed in function return type declaration [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 349: default argument not at end of parameter list [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 350: redefinition of default argument [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 351: more than one instance of entity-kind "entity" matches the argument list: [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 352: more than one instance of constructor "entity" matches the argument list: [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 353: default argument of type "type" is incompatible with parameter of type "type" [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 354: cannot overload functions distinguished by return type alone [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 355: no suitable user-defined conversion from "type" to "type" exists [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 356: type qualifier is not allowed on this function [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 358: the object has cv-qualifiers that are not compatible with the member function [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 359: program too large to compile (too many virtual functions) [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 360: return type is not identical to nor covariant with return type "type" of overridden virtual function entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 361: override of virtual entity-kind "entity" is ambiguous [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 362: pure specifier ("= 0") allowed only on virtual functions [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 363: badly-formed pure specifier (only "= 0" is allowed) [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 364: data member initializer is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 365: object of abstract class type "type" is not allowed: [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 366: function returning abstract class "type" is not allowed: [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 367: duplicate friend declaration [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 368: inline specifier allowed on function declarations only [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 369: "inline" is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 370: invalid storage class for an inline function [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 371: invalid storage class for a class member [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 372: local class member entity-kind "entity" requires a definition [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 373: entity-kind "entity" (declared at line xxxx) is inaccessible [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 375: class "type" has no copy constructor to copy a const object [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 376: defining an implicitly declared member function is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 377: class "type" has no suitable copy constructor [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 378: linkage specification is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 379: unknown external linkage specification [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 380: linkage specification is incompatible with previous "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 381: more than one instance of overloaded function "entity" has "C" linkage [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 382: class "type" has more than one default constructor [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 384: "operatorxxxx" must be a member function [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 385: operator may not be a static member function [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 386: no arguments allowed on user-defined conversion [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 387: too many parameters for this operator function [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 388: too few parameters for this operator function [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 389: nonmember operator requires a parameter with class type [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 390: default argument is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 391: more than one user-defined conversion from "type" to "type" applies: [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 392: no operator "xxxx" matches these operands [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 393: more than one operator "xxxx" matches these operands: [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 394: first parameter of allocation function must be of type "size_t" [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 395: allocation function requires "void *" return type [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 396: deallocation function requires "void" return type [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 397: first parameter of deallocation function must be of type "void *" [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 399: type must be an object type [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 400: base class "type" has already been initialized [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 401: base class name required -- "type" assumed (anachronism) [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 402: entity-kind "entity" has already been initialized [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 403: name of member or base class is missing [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 404: assignment to "this" (anachronism) [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 405: "overload" keyword used (anachronism) [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 406: invalid anonymous union -- nonpublic member is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 407: invalid anonymous union -- member function is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 408: anonymous union at global or namespace scope must be declared static [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 410: implicitly generated constructor for class "type" cannot initialize: [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 412: entity-kind "entity" has an uninitialized const or reference member [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 413: entity-kind "entity" has an uninitialized const field [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 414: class "type" has no assignment operator to copy a const object [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 415: class "type" has no suitable assignment operator [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 416: ambiguous assignment operator for class "type" [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 418: declaration requires a typedef name [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 420: "virtual" is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 421: "static" is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 422: cast of bound function to normal function pointer (anachronism) [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 423: expression must have pointer-to-member type [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 424: extra ";" ignored [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 425: in-class initializer for nonstatic member is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 427: no instance of overloaded "entity" matches the argument list [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 429: no instance of entity-kind "entity" matches the required type [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 430: delete array size expression used (anachronism) [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 432: a cast to abstract class "type" is not allowed: [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 433: function "main" may not be called or have its address taken [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 434: a new-initializer may not be specified for an array [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 435: member function "entity" may not be redeclared outside its class [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 436: pointer to incomplete class type is not allowed [База знаний] Cause:
Trying to use the arrow field selection operator on an object whose type is incomplete. An incomplete type is a type whichhas not been defined yet, there is only a forward declaration of the t ...
Posted: 2009-09-28 11:01:03 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 437: reference to local variable of enclosing function is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 438: single-argument function used for postfix "xxxx" (anachronism) [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 440: implicitly generated assignment operator cannot copy: [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 441: cast to array type is nonstandard (treated as cast to "type") [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 442: entity-kind "entity" has an operator newxxxx() but no default operator deletexxxx() [База знаний] ...
Posted: 2008-11-16 21:51:37 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 443: entity-kind "entity" has a default operator deletexxxx() but no operator newxxxx() [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 444: destructor for base class "entity" (declared at line xxxx) is not virtual [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 446: invalid redeclaration of member entity-kind "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 447: function "main" may not be declared inline [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 448: member function with the same name as its class must be a constructor [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 449: using nested entity-kind "entity" (anachronism) [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 450: a destructor may not have parameters [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 451: copy constructor for class "type" may not have a parameter of type "type" [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 452: entity-kind "entity" returns incomplete type "type" [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 453: protected entity-kind "entity" (declared at line xxxx) is not accessible through a "type" pointer or object [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 454: a parameter is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 455: an "asm" declaration is not allowed here [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 456: no suitable conversion function from "type" to "type" exists [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 457: delete of pointer to incomplete class [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 458: no suitable constructor exists to convert from "type" to "type" [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 459: more than one constructor applies to convert from "type" to "type": [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 460: more than one conversion function from "type" to "type" applies: [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 461: more than one conversion function from "type" to a built-in type applies: [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 467: a constructor or destructor may not have its address taken [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 469: temporary used for initial value of reference to non-const (anachronism) [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 470: qualified name is not allowed in member declaration [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 471: enumerated type mixed with another type (anachronism) [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 472: the size of an array in "new" must be non-negative [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 473: returning reference to local temporary [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 475: "enum" declaration is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 476: qualifiers dropped in binding reference of type "type" to initializer of type "type" [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 477: a reference of type "type" (not const-qualified) cannot be initialized with a value of type "type" [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 478: a pointer to function may not be deleted [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 479: conversion function must be a nonstatic member function [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 480: template declaration is not allowed here [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 481: expected a "<" [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 482: expected a ">" [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 483: template parameter declaration is missing [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 484: argument list for entity-kind "entity" is missing [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 485: too few arguments for entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 486: too many arguments for entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 488: entity-kind "entity" is not used in declaring the parameter types of entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 489: two nested types have the same name: "entity" and "entity" (declared at line xxxx) (cfront compatibility) [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 490: global "entity" was declared after nested "entity" (declared at line xxxx)(cfront compatibility) [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 492: more than one instance of entity-kind "entity" matches the required type [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 493: the type "long long" is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 494: omission of "xxxx" is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 495: return type may not be specified on a conversion function [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 499: excessive recursion at instantiation of entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 500: "xxxx" is not a function or static data member [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 501: argument of type "type" is incompatible with template parameter of type "type" [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 502: initialization requiring a temporary or conversion is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 503: declaration of "xxxx" hides function parameter [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 504: initial value of reference to non-const must be an lvalue [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 506: "template" is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 507: "type" is not a class template [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 509: "main" is not a valid name for a function template [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 510: invalid reference to entity-kind "entity" (union/nonunion mismatch) [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 511: a template argument may not reference a local type [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 513: the global scope has no tag named "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 514: entity-kind "entity" has no tag member named "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 515: member function typedef (allowed for cfront compatibility) [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 516: entity-kind "entity" may be used only in pointer-to-member declaration [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 518: a template argument may not reference a non-external entity [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 519: name followed by "::~" must be a class name or a type name [База знаний] ...
Posted: 2008-11-16 21:51:38 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 520: destructor name does not match name of class "type" [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 521: type used as destructor name does not match type "type" [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 522: entity-kind "entity" redeclared "inline" after being called [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 524: invalid storage class for a template declaration [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 525: entity-kind "entity" (declared at line xxxx) is an inaccessible type (allowed for cfront compatibility) [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 527: invalid explicit instantiation declaration [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 528: entity-kind "entity" is not an entity that can be instantiated [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 529: compiler generated entity-kind "entity" cannot be explicitly instantiated [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 530: inline entity-kind "entity" cannot be explicitly instantiated [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 532: entity-kind "entity" cannot be instantiated -- no template definition was supplied [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 533: entity-kind "entity" cannot be instantiated -- it has been explicitly specialized [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 536: no instance of entity-kind "entity" matches the specified type [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 537: declaring a void parameter list with a typedef is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 538: global entity-kind "entity" used instead of entity-kind "entity" (cfront compatibility) [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 539: template parameter "xxxx" may not be redeclared in this scope [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 540: declaration of "xxxx" hides template parameter [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 541: template argument list must match the parameter list [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 543: extra parameter of postfix "operatorxxxx" must be of type "int" [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 544: an operator name must be declared as a function [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 545: operator name is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 546: entity-kind "entity" cannot be specialized in the current scope [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 547: nonstandard form for taking the address of a member function [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 548: too few template parameters -- does not match previous declaration (declared at line xxxx) [База знаний] ...
Posted: 2009-05-28 13:53:16 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 549: too many template parameters -- does not match previous declaration (declared at line xxxx) [База знаний] ...
Posted: 2009-05-28 13:54:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 550: function template for operator delete(void *) is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 551: class template and template parameter may not have the same name [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 553: a template argument may not reference an unnamed type [База знаний] Cause :
In standard C++98/C++03, template type arguments must have linkage, and therefore cannot be based on local or unnamed classes/enums.
So an example of where this diagnostic would be emitte ...
Posted: 2009-09-28 11:03:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 554: enumerated type is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 555: type qualifier on a reference type is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 556: a value of type "type" cannot be assigned to an entity of type "type" [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 557: pointless comparison of unsigned integer with a negative constant [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 558: cannot convert to incomplete class "type" [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 559: const object requires an initializer [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 560: object has an uninitialized const or reference member [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 561: nonstandard preprocessing directive [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 562: entity-kind "entity" may not have a template argument list [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 563: initialization with "{...}" expected for aggregate object [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 564: pointer-to-member selection class types are incompatible ("type" and "type") [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 565: pointless friend declaration [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 566: "." used in place of "::" to form a qualified name [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 567: non-const function called for const object (anachronism) [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 568: a dependent statement may not be a declaration [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 569: a parameter may not have void type [База знаний] Cause:
The Intel(R) C++ compiler for Linux* will give this diagnostic when you try to instantiate template parameter with type void.
For compatibility with the Microsoft* compiler the Intel(R) C++ c ...
Posted: 2009-09-28 10:41:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 572: this operator is not allowed in a template argument expression [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 573: try block requires at least one handler [База знаний] ...
Posted: 2008-11-16 21:51:39 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 574: handler requires an exception declaration [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 575: handler is masked by default handler [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 576: handler is potentially masked by previous handler for type "type" [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 577: use of a local type to specify an exception [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 578: redundant type in exception specification [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 579: exception specification is incompatible with that of previous entity-kind "entity" (declared at line xxxx)%%s=':' [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 583: C++ exception handler found but /EHsc option was not specified [База знаний] ...
Posted: 2009-05-28 13:58:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 584: omission of exception specification is incompatible with previous entity-kind "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 585: could not create instantiation request file "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 586: non-arithmetic operation not allowed in nontype template argument [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 587: use of a local type to declare a nonlocal variable [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 588: use of a local type to declare a function [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 589: transfer of control bypasses initialization of: [База знаний] Cause:
Compiler encounters code that bypasses initialization of a variable due to transfer of control.
Example:
void foo() { goto Label; int i = 0; Label: i++; }
> icl -c test.cppIntel(R) C++ C ...
Posted: 2009-04-28 12:12:49 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 591: transfer of control into an exception handler [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 592: entity-kind "entity" is used before its value is set [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 593: entity-kind "entity" was set but never used [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 594: entity-kind "entity" cannot be defined in the current scope [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 595: exception specification is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 596: external/internal linkage conflict for entity-kind "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 597: entity-kind "entity" will not be called for implicit or explicit conversions [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 599: function template for operator new(size_t) is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 601: pointer to member of type "type" is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 602: ellipsis is not allowed in operator function parameter list [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 603: "entity" is reserved for future use as a keyword [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 604: invalid macro definition: [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 605: invalid macro undefinition: [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 606: invalid preprocessor output file [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 607: cannot open preprocessor output file [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 608: IL file name must be specified if input is [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 609: invalid IL output file [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 610: cannot open IL output file [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 611: invalid C output file [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 612: cannot open C output file [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 613: error in debug option argument [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 614: invalid option: [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 615: back end requires name of IL file [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 616: could not open IL file [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 617: invalid number: [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 618: incorrect host CPU id [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 619: invalid instantiation mode: [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 621: invalid error limit: [База знаний] ...
Posted: 2008-11-16 21:51:40 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 622: invalid raw-listing output file [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 623: cannot open raw-listing output file [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 624: invalid cross-reference output file [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 625: cannot open cross-reference output file [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 626: invalid error output file [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 627: cannot open error output file [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 628: virtual function tables can only be suppressed when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 629: anachronism option can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 630: instantiation mode option can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 631: automatic instantiation mode can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 632: implicit template inclusion mode can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 633: exception handling option can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 634: strict mode is incompatible with K&R mode [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 635: strict mode is incompatible with cfront mode [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 636: missing source file name [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 637: output files may not be specified when compiling several input files [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 638: too many arguments on command line [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 639: an output file was specified, but none is needed [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 640: IL display requires name of IL file [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 641: a template parameter may not have void type [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 642: excessive recursive instantiation of entity-kind "entity" due to instantiate-all mode [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 643: strict mode is incompatible with allowing anachronisms [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 644: a throw expression may not have void type [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 645: local instantiation mode is incompatible with automatic instantiation [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 646: parameter of abstract class type "type" is not allowed: [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 647: array of abstract class "type" is not allowed: [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 648: floating-point template parameter is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 649: this pragma must immediately precede a declaration [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 650: this pragma must immediately precede a statement [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 651: this pragma must immediately precede a declaration or statement [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 652: this kind of pragma may not be used here [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 654: overloaded virtual function [База знаний] Cause: The Compiler issues warning #654 when the Derived class provides overridden virtual function for one overload but not the complete set of overloads, such as the code below.Example:class Base { ...
Posted: 2009-05-01 14:09:38 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 655: specific definition of inline template function must precede its first use [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 656: invalid error tag in diagnostic control option: [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 657: invalid error number in diagnostic control option: [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 658: parameter type involves pointer to array of unknown bound [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 659: parameter type involves reference to array of unknown bound [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 660: pointer-to-member-function cast to pointer to function [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 661: struct or union declares no named members [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 662: nonstandard unnamed field [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 663: nonstandard unnamed member [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 665: invalid precompiled header output file [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 666: cannot open precompiled header output file [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 667: "xxxx" is not a type name [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 668: cannot open precompiled header input file [База знаний] ...
Posted: 2008-11-16 21:51:41 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 669: precompiled header file "xxxx" is either invalid or not generated by this version of the compiler [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 670: precompiled header file "xxxx" was not generated in this directory [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 671: header files used to generate precompiled header file "xxxx" have changed [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 672: the command line options do not match those used when precompiled header file "xxxx" was created [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 673: the initial sequence of preprocessing directives is not compatible with those of precompiled header file [База знаний] Cause:
Consider the two source files below:
a.cpp: # include "a.h" // code
b.cpp: # include "b.h" # include "a.h" // code
If you compile both of these files with /Yua.h, then the include d ...
Posted: 2009-04-03 18:10:21 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 674: unable to obtain mapped memory (see pch_diag.txt) [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 675: "xxxx": using precompiled header file "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 676: "xxxx": creating precompiled header file "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 677: memory usage conflict with precompiled header file "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 678: invalid PCH memory size [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 679: PCH options must appear first in the command line [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 680: insufficient memory for PCH memory allocation [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 681: precompiled header files may not be used when compiling several input files [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 682: insufficient preallocated memory for generation of precompiled header file(use option /Qpch_memxxxx) [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 683: very large entity in program prevents generation of precompiled header file [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 684: "xxxx" is not a valid directory [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 685: cannot build temporary file name [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 686: "restrict" is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 687: a pointer or reference to function type may not be qualified by "restrict" [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 688: "xxxx" is an unrecognized __declspec attribute [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 689: a calling convention modifier may not be specified here [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 690: conflicting calling convention modifiers [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 691: strict mode is incompatible with Microsoft mode [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 692: cfront mode is incompatible with Microsoft mode [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 693: calling convention specified here is ignored [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 694: a calling convention may not be followed by a nested declarator [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 695: calling convention is ignored for this type [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 697: declaration modifiers are incompatible with previous declaration [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 698: the modifier "xxxx" is not allowed on this declaration [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 699: transfer of control into a try block [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 700: inline specification is incompatible with previous "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 701: closing brace of template definition not found [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 702: wchar_t keyword option can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 704: expected an integer constant [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 705: call of pure virtual function [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 706: invalid source file identifier string [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 707: a class template cannot be defined in a friend declaration [База знаний] ...
Posted: 2008-11-16 21:51:42 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 708: "asm" is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 709: "asm" must be used with a function definition [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 710: "asm" function is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 711: ellipsis with no explicit parameters is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 712: "&..." is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 713: invalid use of "&..." [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 715: temporary used for initial value of reference to const volatile (anachronism) [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 716: a reference of type "type" cannot be initialized with a value of type "type" [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 717: initial value of reference to const volatile must be an lvalue [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 718: SVR4 C compatibility option can be used only when compiling ANSI C [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 719: using out-of-scope declaration of entity-kind "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 720: strict mode is incompatible with SVR4 C mode [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 721: call of entity-kind "entity" (declared at line xxxx) cannot be inlined [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 722: entity-kind "entity" cannot be inlined [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 723: invalid PCH directory: [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 724: expected __except or __finally [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 725: a __leave statement may only be used within a __try [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 731: "xxxx" not found on pack alignment stack [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 732: empty pack alignment stack [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 733: RTTI option can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 734: entity-kind "entity" (declared at line xxxx), required for copy that was eliminated, is inaccessible [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 735: entity-kind "entity", required for copy that was eliminated, is not callable because reference parameter cannot be bound to rvalue [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 736: must be included before typeid is used [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 737: xxxx cannot cast away const or other type qualifiers [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 738: the type in a dynamic_cast must be a pointer or reference to a complete class type, or void * [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 739: the operand of a pointer dynamic_cast must be a pointer to a complete classtype [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 740: the operand of a reference dynamic_cast must be an lvalue of a complete class type [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 741: the operand of a runtime dynamic_cast must have a polymorphic class type [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 742: bool option can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 744: an array type is not allowed here [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 745: expected an "=" [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 746: expected a declarator in condition declaration [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 747: "xxxx", declared in condition, may not be redeclared in this scope [База знаний] ...
Posted: 2008-11-16 21:51:43 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 748: default template arguments are not allowed for function templates [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 749: expected a "," or ">" [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 750: expected a template parameter list [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 751: incrementing a bool value is deprecated [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 752: bool type is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 753: offset of base class "entity" within class "entity" is too large [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 754: expression must have bool type (or be convertible to bool) [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 755: array new and delete option can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 756: entity-kind "entity" is not a variable name [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 757: __based modifier is not allowed here [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 758: __based does not precede a pointer operator, __based ignored [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 759: variable in __based modifier must have pointer type [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 760: the type in a const_cast must be a pointer, reference, or pointer to member to an object type [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 761: a const_cast can only adjust type qualifiers; it cannot change the underlying type [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 762: mutable is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 763: redeclaration of entity-kind [База знаний] Cause:
The Compiler issues the following warning if you redeclare a typedef or nested class with different accessibilities. For example:
class Base {private: typedef int* ip; // declare ip ...
Posted: 2009-03-30 17:42:04 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 764: nonstandard format string conversion [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 765: use of alternative token "<:" appears to be unintended [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 766: use of alternative token "%%:" appears to be unintended [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 767: namespace definition is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 768: name must be a namespace name [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 769: namespace alias definition is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 770: namespace-qualified name is required [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 771: a namespace name is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 772: invalid combination of DLL attributes [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 773: entity-kind "entity" is not a class template [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 774: array with incomplete element type is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 775: allocation operator may not be declared in a namespace [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 776: deallocation operator may not be declared in a namespace [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 777: entity-kind "entity" conflicts with using-declaration of entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 778: using-declaration of entity-kind "entity" conflicts with entity-kind "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 779: namespaces option can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 780: using-declaration ignored -- it refers to the current namespace [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 781: a class-qualified name is required [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 785: entity-kind "entity" has no actual member "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 787: incompatible memory attributes specified [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 788: memory attribute ignored [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 789: memory attribute may not be followed by a nested declarator [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 790: memory attribute specified more than once [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 791: calling convention specified more than once [База знаний] ...
Posted: 2008-11-16 21:51:44 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 792: a type qualifier is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 793: entity-kind "entity" (declared at line xxxx) was used before its template was declared [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 794: static and nonstatic member functions with same parameter types cannot be overloaded [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 795: no prior declaration of entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 796: a template-id is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 797: a class-qualified name is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 798: entity-kind "entity" may not be redeclared in the current scope [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 799: qualified name is not allowed in namespace member declaration [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 800: entity-kind "entity" is not a type name [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 801: explicit instantiation is not allowed in the current scope [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 802: entity-kind "entity" cannot be explicitly instantiated in the current scope [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 803: entity-kind "entity" explicitly instantiated more than once [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 804: typename may only be used within a template [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 805: special_subscript_cost option can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 806: typename option can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 807: implicit typename option can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 808: nonstandard character at start of object-like macro definition [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 810: conversion from "type" to "type" may lose significant bits [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 812: "entity", implicitly called from entity-kind "entity", is ambiguous [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 813: option "explicit" can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 814: "explicit" is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 815: declaration conflicts with "xxxx" (reserved class name) [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 816: only "()" is allowed as initializer for array entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 817: "virtual" is not allowed in a function template declaration [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 818: invalid anonymous union -- class member template is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 819: template nesting depth does not match the previous declaration of entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 820: this declaration cannot have multiple "template <...>" clauses [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 821: option to control the for-init scope can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 822: "xxxx", declared in for-loop initialization, may not be redeclared in this scope [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 823: reference is to entity-kind "entity" (declared at line xxxx) -- under old for-init scoping rules it would have been entity-kind "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 824: option to control warnings on for-init differences can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 825: definition of virtual entity-kind "entity" is required here [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 826: empty comment interpreted as token-pasting operator "##" [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 827: a storage class is not allowed in a friend declaration [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 828: template parameter list for "entity" is not allowed in this declaration [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 829: entity-kind "entity" is not a valid member class or function template [База знаний] ...
Posted: 2008-11-16 21:51:45 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 830: not a valid member class or function template declaration [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 831: a template declaration containing a template parameter list may not be followed by an explicit specialization declaration [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 832: explicit specialization of entity-kind "entity" must precede the first use of entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 833: explicit specialization is not allowed in the current scope [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 834: partial specialization of entity-kind "entity" is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 835: entity-kind "entity" is not an entity that can be explicitly specialized [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 836: explicit specialization of entity-kind "entity" must precede its first use [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 837: template parameter "xxxx" may not be used in an elaborated type specifier [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 838: specializing entity-kind "entity" requires "template<>" syntax [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 841: option "old_specializations" can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 842: specializing entity-kind "entity" without "template<>" syntax is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 843: this declaration may not have extern "C" linkage [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 844: "xxxx" is not a class or function template name in the current scope [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 845: specifying a default argument when redeclaring an unreferenced function template is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 846: specifying a default argument when redeclaring an already referenced function template is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 847: cannot convert pointer to member of base class "type" to pointer to member of derived class "type" -- base class is virtual [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 848: exception specification is incompatible with that of entity-kind "entity" (declared at line xxxx)%%s=':' [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 849: omission of exception specification is incompatible with entity-kind "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 850: unexpected end of default argument expression [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 851: default-initialization of reference is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 852: uninitialized entity-kind "entity" has a const member [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 853: uninitialized base class "type" has a const member [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 854: const entity-kind "entity" requires an initializer -- class "type" has no explicitly declared default constructor [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 855: const object requires an initializer -- class "type" has no explicitly declared default constructor [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 856: option "implicit_extern_c_type_conversion" can be used only when compilingC++ [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 857: strict mode is incompatible with long preserving rules [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 859: in a function definition a type qualifier on a "void" return type is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 860: static data member declaration is not allowed in this class [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 861: template instantiation resulted in an invalid function declaration [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 862: "..." is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 863: option "extern_inline" can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 864: extern inline entity-kind "entity" was referenced but not defined [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 865: invalid destructor name for type "type" [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 867: destructor reference is ambiguous -- both entity-kind "entity" and entity-kind "entity" could be used [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 868: virtual inline entity-kind "entity" was never defined [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 869: entity-kind "entity" was never referenced [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 870: only one member of a union may be specified in a constructor initializer list [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 871: support for "new[]" and "delete[]" is disabled [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 872: "double" used for "long double" in generated C code [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 873: entity-kind "entity" has no corresponding operator deletexxxx (to be called if an exception is thrown during initialization of an allocated object) [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 874: support for placement delete is disabled [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 875: no appropriate operator delete is visible [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 876: pointer or reference to incomplete type is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 877: invalid partial specialization -- entity-kind "entity" is already fully specialized [База знаний] ...
Posted: 2008-11-16 21:51:46 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 878: incompatible exception specifications [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 880: omission of explicit type is nonstandard ("int" assumed) [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 881: more than one partial specialization matches the template argument list of entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 883: a template argument list is not allowed in a declaration of a primary template [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 884: partial specializations may not have default template arguments [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 885: entity-kind "entity" is not used in or cannot be deduced from the template argument list of entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 887: the template argument list of the partial specialization includes a nontype argument whose type depends on a template parameter [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 888: this partial specialization would have been used to instantiate entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 889: this partial specialization would have made the instantiation of entity-kind "entity" ambiguous [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 890: expression must have integral or enum type [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 891: expression must have arithmetic or enum type [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 892: expression must have arithmetic, enum, or pointer type [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 893: type of cast must be integral or enum [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 894: type of cast must be arithmetic, enum, or pointer [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 895: expression must be a pointer to a complete object type [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 897: a partial specialization nontype argument must be the name of a nontype parameter or a constant [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 898: return type is not identical to return type "type" of overridden virtual function entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 899: option "guiding_decls" can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 900: a partial specialization of a class template must be declared in the namespace of which it is a member [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 901: entity-kind "entity" is a pure virtual function [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 902: pure virtual entity-kind "entity" has no overrider [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 903: __declspec attributes ignored [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 904: invalid character in input line [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 905: function returns incomplete type "type" [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 906: effect of this "#pragma pack" directive is local to entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 907: xxxx is not a template [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 908: a friend declaration may not declare a partial specialization [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 909: exception specification ignored [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 910: declaration of "size_t" does not match the expected type "type" [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 911: space required between adjacent ">" delimiters of nested template argument lists (">>" is the right shift operator) [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 912: could not set locale [База знаний] Cause:
This error occurs only when the LANG environment variable is set to an invalid locale. The compiler makes a call to setlocale() and if it fails then it issues this error. For example:
$ ex ...
Posted: 2009-07-02 14:36:16 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 913: invalid multibyte character sequence [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 914: template instantiation resulted in unexpected function type of "type" (the meaning of a name may have changed since the template declaration -- the type of the template is "type") [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 915: ambiguous guiding declaration -- more than one function template "entity" matches type "type" [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 916: non-integral operation not allowed in nontype template argument [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 917: option "embedded_c++" can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 918: Embedded C++ does not support templates [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 919: Embedded C++ does not support exception handling [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 920: Embedded C++ does not support namespaces [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 921: Embedded C++ does not support run-time type information [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 922: Embedded C++ does not support the new cast syntax [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 923: Embedded C++ does not support using-declarations [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 924: Embedded C++ does not support "mutable" [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 925: Embedded C++ does not support multiple or virtual inheritance [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 926: invalid Microsoft version number: [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 927: pointer-to-member representation "xxxx" has already been set for entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 928: "type" cannot be used to designate constructor for "type" [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 929: invalid suffix on integral constant [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 930: operand of __uuidof must have a class or enum type for which __declspec(uuid("...")) has been specified [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 931: invalid GUID string in __declspec(uuid("...")) [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 932: option "vla" can be used only when compiling C [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 933: variable length array with unspecified bound is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 934: an explicit template argument list is not allowed on this declaration [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 935: an entity with linkage cannot have a type involving a variable length array [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 936: a variable length array cannot have static storage duration [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 937: entity-kind "entity" is not a template [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 939: expected a template argument [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 941: nonmember operator requires a parameter with class or enum type [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 942: option "enum_overloading" can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 944: qualifier of destructor name "type" does not match type "type" [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 945: type qualifier ignored [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 946: option "nonstd_qualifier_deduction" can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 947: a function declared "dllimport" may not be defined [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 948: incorrect property specification; correct form is __declspec(property(get=name1,put=name2)) [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 949: property has already been specified [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 950: __declspec(property) is not allowed on this declaration [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 951: member is declared with __declspec(property), but no "get" function was specified [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 952: the __declspec(property) "get" function "xxxx" is missing [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 953: member is declared with __declspec(property), but no "put" function was specified [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 954: the __declspec(property) "put" function "xxxx" is missing [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 955: ambiguous class member reference -- entity-kind "entity" (declared at line xxxx) used in preference to entity-kind "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 956: missing or invalid segment name in __declspec(allocate("...")) [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 957: __declspec(allocate) is not allowed on this declaration [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 958: a segment name has already been specified [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 959: segment name must be declared in a pragma [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 960: illegal segment pragma redeclaration [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 961: invalid import wrapper output file [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 962: cannot open import wrapper output file [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 963: no EMMS instruction before return [База знаний] Cause:It is usually incorrect for MMX code to be followed by x87 code without an intervening EMMS instruction. Usually this will result in x87 stack overflow and unpredictable results at runtime. ...
Posted: 2009-07-02 14:22:07 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 964: no EMMS instruction before call [База знаний] Cause:It is usually incorrect for MMX code to be followed by x87 code without an intervening EMMS instruction. Usually this will result in x87 stack overflow and unpredictable results at runtime. ...
Posted: 2009-07-02 14:25:03 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 965: no EMMS instruction before floating-point operation [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 966: mixing floating-point and MMX(TM) instructions may hurt performance [База знаний] ...
Posted: 2008-11-16 21:51:47 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 967: conversion from "type" to "type"; sizes do not match [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 968: cannot convert pointer to member of derived class "type" to pointer to member of base class "type" -- base class is virtual [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 969: invalid directory for instantiation files: [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 970: option "one_instantiation_per_object" can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 971: invalid output file: "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 972: cannot open output file: "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 973: an instantiation information file name may not be specified when compiling several input files [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 974: option "one_instantiation_per_object" may not be used when compiling several input files [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 975: more than one command line option matches the abbreviation "--xxxx": [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 977: type qualifiers on function types are ignored [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 978: cannot open definition list file: "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 979: late/early tiebreaker option can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 980: wrong number of actual arguments to intrinsic function [База знаний] Cause:The Compiler erroneously issues the following warning message due to a Compiler error: warning #980: wrong number of actual arguments to intrinsic function Resolution:This issue has been reso ...
Posted: 2009-03-30 16:42:16 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 982: erroneous type declaration; check that your compiler and header files match [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 983: not a valid CPU name [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 984: too many segments in object file [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 985: identifier "xxxx" was truncated in debug information [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 986: declaration introduces new type in standard C [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 987: typedef may not be modified in standard C [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 988: comparison always evaluates to true [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 989: comparison always evaluates to false [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 990: #include of "xxxx" may be non-portable [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 991: //-style comments are nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 992: macro recursion is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 993: macro replacement within a string literal or character constant [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 994: invalid combination of pragma qualifiers [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 995: unknown pragma qualifier [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 996: value of immediate argument to intrinsic is out of range [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 997: function uses MMX(TM) instructions, but contains no EMMS instruction [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 998: reference to EBX in a function requiring stack alignment [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 999: incorrect use of va_start [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1000: incorrect use of va_arg [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1001: incorrect use of va_end [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1002: pending instantiations option can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1003: invalid directory for #import files: [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1004: an import directory can be specified only in Microsoft mode [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1005: a member with reference type is not allowed in a union [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1006: "typedef" may not be specified here [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1007: redeclaration of entity-kind alters its access [База знаний] Cause:
This diagnostic is issued if you redeclare a data member ornested type with different accessibilities. For example:
class Base {private: class C; // forwardly declared class C privat ...
Posted: 2009-03-27 17:07:24 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 1008: a class or namespace qualified name is required [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1009: return type "int" omitted in declaration of function "main" [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1010: pointer-to-member representation "xxxx" is too restrictive for entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1011: missing return statement at end of non-void entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1012: duplicate using-declaration of "entity" ignored [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1013: enum bit-fields are always unsigned, but enum "type" includes negative enumerator [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1014: option "class_name_injection" can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1015: option "arg_dep_lookup" can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1016: option "friend_injection" can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1017: name following "template" must be a template [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1019: conflicting section attributes [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1020: attributes for standard section "xxxx" ignored [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1021: Unexpected section "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1022: #pragma pointer_size(pop...) : more pops than pushes [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1023: #pragma pointer_size(pop,...) : did not find previously pushed identifier "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1024: expected pragma pointer_size parameter to be '32' or '64' [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1025: zero extending result of unary operation [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1026: pragma xxxx should be at global scope [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1027: __try in function containing objects with destructors [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1028: unknown warning specifier [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1029: warning level out of range, expected value between 1 and 4 [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1030: expected a warning number [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1031: pop without corresponding push [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1032: syntax error in omp directive [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1033: unsupported omp directive [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1034: unimplemented omp directive [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1035: syntax error in xxxx clause [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1036: unsupported omp clause [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1037: unimplemented omp clause [База знаний] ...
Posted: 2008-11-16 21:51:48 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1038: invalid entity for this variable list in xxxx clause [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1039: xxxx clause is incompatible with directive [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1040: directive cannot contain more than one if clause [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1041: directive cannot contain more than one schedule clause [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1042: directive cannot contain more than one nowait clause [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1043: directive cannot contain more than one default clause [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1044: unsupported C++ object in data access clause [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1045: OpenMP for-init does not conform [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1046: OpenMP for-test does not conform [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1047: OpenMP for-incr does not conform [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1048: nested critical regions with same name [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1049: directive cannot contain more than one ordered clause [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1050: omp for directive requires a proceeding for statement [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1051: negative chunk size not allowed [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1052: qualifier should be after "*" [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1053: break cannot be used to exit xxxx region [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1054: illegal return in xxxx construct [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1055: illegal branch into omp construct [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1056: master region may not be closely nested inside a xxxx region [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1057: "xxxx" region may not be closely nested inside a "xxxx" region [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1058: barrier region may not be closely nested inside a xxxx region [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1059: the smallest statement containing a barrier or flush must be a block or compound statement [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1060: Open MP directives are case sensitive [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1061: directive bound to nonblock [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1062: "xxxx" region may not be closely nested inside a "xxxx" region [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1063: copyin variable must be threadprivate [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1064: Illegal operation in atomic expression [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1065: Atomic is bound to an illegal construct [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1066: Illegal reference to variable under default none [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1069: threadprivate variable cannot appear in private, firstprivate, lastprivate, captureprivate, shared, or reduction clauses [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1070: reduction variable cannot be const-qualified [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1071: Floating-point types are not supported by EFI target [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1072: insufficient preallocated memory for generation of precompiled header file: producing xxxx and recompiling [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1073: error creating pchs file [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1074: threadprivate directive must be at file or namespace scope or have static storage [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1075: threadprivate variable should not be incomplete or reference type [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1076: nonstandard local-class friend declaration -- no prior declaration in the enclosing scope [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1077: specifying a default argument on this declaration is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1078: option "nonstd_using_decl" can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1079: return type of function "main" must be "int" [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1080: a nontype template parameter may not have class type [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1081: a default template argument cannot be specified on the declaration of a member of a class template outside of its class [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1082: a return statement is not allowed in a handler of a function try block of a constructor [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1083: ordinary and extended designators cannot be combined in an initializer designation [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1084: the second subscript must not be smaller than the first [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1085: option "designators" can be used only when compiling C [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1086: option "extended_designators" can be used only when compiling C [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1087: declared size for bit field is larger than the size of the bit field type;truncated to xxxx bits [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1088: type used as constructor name does not match type "type" [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1089: use of a type with no linkage to declare a variable with linkage [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1090: use of a type with no linkage to declare a function [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1091: return type may not be specified on a constructor [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1092: return type may not be specified on a destructor [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1093: incorrectly formed universal character name [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1094: universal character name specifies an invalid character [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1095: a universal character name cannot designate a character in the basic character set [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1096: this universal character is not allowed in an identifier [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1097: the identifier __VA_ARGS__ can only appear in the replacement lists of variadic macros [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1098: the qualifier on this friend declaration is ignored [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1099: array range designators cannot be applied to dynamic initializers [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1100: property name cannot appear here [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1101: "inline" used as a function qualifier is ignored [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1102: option "compound_literals" can be used only when compiling C [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1103: a variable-length array type is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1104: a compound literal is not allowed in an integral constant expression [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1105: a compound literal of type "type" is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1106: a template friend declaration cannot be declared in a local class [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1107: ambiguous "?" operation: second operand of type "type" can be converted to third operand type "type", and vice versa [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1108: call of an object of a class type without appropriate operator() or conversion functions to pointer-to-function type [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1110: there is more than one way an object of type "type" can be called for the argument list: [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1111: typedef name has already been declared (with similar type) [База знаний] ...
Posted: 2008-11-16 21:51:49 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1112: operator new and operator delete cannot be given internal linkage [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1113: storage class "mutable" is not allowed for anonymous unions [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1114: invalid precompiled header file [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1115: abstract class type "type" is not allowed as catch type: [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1116: a qualified function type cannot be used to declare a nonmember function or a static member function [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1117: a qualified function type cannot be used to declare a parameter [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1118: cannot create a pointer or reference to qualified function type [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1119: extra braces are nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1120: invalid macro definition: [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1121: subtraction of pointer types "type" and "type" is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1122: an empty template parameter list is not allowed in a template template parameter declaration [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1123: expected "class" [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1124: the "class" keyword must be used when declaring a template template parameter [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1126: a qualified name is not allowed for a friend declaration that is a function definition [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1127: entity-kind "entity" is not compatible with entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1128: a storage class may not be specified here [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1129: class member designated by a using-declaration must be visible in a direct base class [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1131: Sun mode is incompatible with cfront mode [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1132: strict mode is incompatible with Sun mode [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1133: Sun mode is only allowed when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1134: a template template parameter cannot have the same name as one of its template parameters [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1135: recursive instantiation of default argument [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1137: entity-kind "entity" is not an entity that can be defined [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1138: destructor name must be qualified [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1139: friend class name may not be introduced with "typename" [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1140: a using-declaration may not name a constructor or destructor [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1141: a qualified friend template declaration must refer to a specific previously declared template [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1142: invalid specifier in class template declaration [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1143: argument is incompatible with formal parameter [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1144: option "dep_name" can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1145: loop in sequence of "operator->" functions starting at class "type" [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1146: entity-kind "entity" has no member class "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1147: the global scope has no class named "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1148: recursive instantiation of template default argument [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1149: access declarations and using-declarations cannot appear in unions [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1150: "entity" is not a class member [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1151: nonstandard member constant declaration is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1152: option "ignore_std" can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1153: option "parse_templates" can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1154: option "dep_name" cannot be used with "no_parse_templates" [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1155: section directive must be in lexical extent of sections directive [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1156: sections directive requires at least one enclosed section directive [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1157: private variable cannot be const-qualified [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1158: reduction variable cannot be pointer or reference type [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1159: ordered region must be closely nested inside a loop or parallel loop region with an ordered clause [База знаний] Cause:
According to the OpenMP* API "The ordered construct specifies a structured block in a loop region which wil be executed in the order of the loop iterations." This diagnositic is issued if the ...
Posted: 2009-09-28 08:59:19 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1160: private variable must not be incomplete or reference type [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1161: illegal branch out of omp construct [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1162: reduction variable is incompatible with reduction operator [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1169: language modes specified are incompatible [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1170: invalid redeclaration of nested class [База знаний] Cause:This diagnostic is issued if you redeclare a nested class with different accessibilities. For example:
class Base {private: class C; // declare C private here
public: class C; // ...
Posted: 2009-04-03 17:00:06 by Jennifer Jiang (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 1171: type containing an unknown-size array is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1172: a variable with static storage duration cannot be defined within an inline function [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1173: an entity with internal linkage cannot be referenced within an inline function with external linkage [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1174: argument type "type" does not match this type-generic function macro [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1176: friend declaration cannot add default arguments to previous declaration [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1177: entity-kind "entity" cannot be declared in this scope [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1178: the reserved identifier "xxxx" may only be used inside a function [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1179: this universal character cannot begin an identifier [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1180: expected a string literal [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1181: unrecognized STDC pragma [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1182: expected "ON", "OFF", or "DEFAULT" [База знаний] ...
Posted: 2008-11-16 21:51:50 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1183: a STDC pragma may only appear between declarations in the global scope or before any statements or declarations in a block scope [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1184: incorrect use of va_copy [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1185: xxxx can only be used with float, double, or long double types [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1186: complex type is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1187: invalid designator kind [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1188: floating-point value cannot be represented exactly [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1189: complex floating-point operation result is out of range [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1190: conversion between real and imaginary yields zero [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1191: an initializer cannot be specified for a flexible array member [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1192: imaginary *= imaginary sets the left-hand operand to zero [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1193: standard requires that entity-kind "entity" be given a type by a subsequent declaration ("int" assumed) [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1194: a definition is required for inline entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1195: conversion from integer to smaller pointer [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1196: a float, double or long double type must be included in the type specifier for a _Complex or _Imaginary type [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1197: "xxxx" is an unsupported __declspec attribute [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1198: initialization, test, and iteration variable should be the same [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1199: object requires a "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1200: a constant with incorrect type reaches this point [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1201: too many functions; disabling COMDAT function packaging [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1202: illegal character xxxx in asm operand constraint [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1203: digit constraint must specify an output operand [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1204: digit illegal in output operand constraint [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1205: illegal '=' or '+' in input operand [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1206: cannot match asm operand constraint [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1207: maximum number of operands exceeded for asm instruction [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1208: output operand constraint must begin with '=' or '+' [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1209: number of alternatives in asm operand constraints must match [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1210: bad substitution directive in asm instruction [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1211: substitution directive specifies non-existent operand in asm instruction [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1212: 'a' modifier used on operand that cannot be printed as an address [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1213: 'c' or 'n' modifier used on operand that is not constant [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1214: 'h' modifier used on operand that isn't stored in eax, ebx, ecx, or edx [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1215: unrecognized modifier character xxxx in substitution directive [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1216: unknown register name xxxx in asm statement [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1217: floating point output constraint must specify a single register [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1218: floating point output operands must be grouped at top of stack [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1219: floating point input operands must not leave empty spaces on the stack [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1220: popped floating point input operands must be grouped at top of stack [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1221: fp output operand must use early clobber constraint [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1222: can't allocate registers for asm instruction [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1223: directive cannot contain more than one num_threads clause [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1224: #warning directive: xxxx [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1226: flush variable must not have a reference type [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1227: symbol was declared as deprecated [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1228: two-operand conditional expressions are not supported in default arguments [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1229: type containing an unknown-size array may alias another element [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1230: Unsupported feature: xxxx [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1231: no label with address taken exists in current scope [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1232: address of label not support in C++ [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1233: expression must have complex type [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1236: empty case range [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1237: case ranges are an extension to standard C/C++ [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1250: types cannot be declared in anonymous unions [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1251: returning pointer to local variable [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1252: returning pointer to local temporary [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1253: option "export" can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1254: option "export" cannot be used with "no_dep_name" [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1255: option "export" cannot be used with "implicit_include" [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1256: declaration of entity-kind "entity" is incompatible with a declaration in another translation unit [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1257: the other declaration is at line xxxx [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1260: a field declaration cannot have a type involving a variable length array [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1261: declaration of entity-kind "entity" had a different meaning during compilation of "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1262: expected "template" [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1263: "export" cannot be used on an explicit instantiation [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1264: "export" cannot be used on this declaration [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1265: a member of an unnamed namespace cannot be declared "export" [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1266: a template cannot be declared "export" after it has been defined [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1267: a declaration cannot have a label [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1268: support for exported templates is disabled [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1269: cannot open exported template file: "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1270: entity-kind "entity" already defined during compilation of "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1271: entity-kind "entity" already defined in another translation unit [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1272: a nonstatic local variable may not be used in a __based specification [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1273: the option to list makefile dependencies may not be specified when compiling more than one translation unit [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1275: the option to generate preprocessed output may not be specified when compiling more than one translation unit [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1276: a field with the same name as its class cannot be declared in a class with a user-declared constructor [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1277: "implicit_include" cannot be used when compiling more than one translation unit [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1278: exported template file "xxxx" is corrupted [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1279: entity-kind "entity" cannot be instantiated -- it has been explicitly specialized in the translation unit containing the exported definition [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1281: the object has cv-qualifiers that are not compatible with the member entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1282: no instance of entity-kind "entity" matches the argument list and object (the object has cv-qualifiers that prevent a match) [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1283: an attribute specifies a mode incompatible with "type" [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1284: there is no type with the width specified [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1285: invalid alignment value specified by attribute [База знаний] ...
Posted: 2008-11-16 21:51:51 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1286: invalid attribute for "type" [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1287: invalid attribute for entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1288: invalid attribute for parameter [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1289: attribute "xxxx" does not take arguments [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1291: expected an attribute name [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1292: attribute "xxxx" ignored [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1293: attributes may not appear here [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1294: invalid argument to attribute "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1295: the "packed" attribute is ignored in a typedef [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1296: in "goto *expr", expr must have type "void *" [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1297: "goto *expr" is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1298: taking the address of a label is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1299: file name specified more than once: [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1301: attribute "xxxx" is only allowed in a function definition [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1302: the "transparent_union" attribute only applies to unions, and "type" is not a union [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1303: the "transparent_union" attribute is ignored on incomplete types [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1304: "type" cannot be transparent because entity-kind "entity" does not have the same size as the union [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1305: "type" cannot be transparent because it has a field of type "type" which is not the same size as the union [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1306: only parameters can be transparent [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1307: the "xxxx" attribute does not apply to local variables [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1308: attributes are not permitted in a function definition [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1309: declarations of local labels should only appear at the start of statement expressions [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1310: the second constant in a case range must be larger than the first [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1311: an asm name is not permitted in a function definition [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1312: an asm name is ignored in a typedef [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1313: unknown register name "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1314: modifier letter 'xxxx' ignored in asm operand [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1315: unknown asm constraint modifier 'xxxx' [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1316: unknown asm constraint letter 'xxxx' [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1317: asm operand has no constraint letter [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1318: an asm output operand must have one of the '=' or '+' modifiers [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1319: an asm input operand may not have the '=' or '+' modifiers [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1320: too many operands to asm statement (maximum is 30; '+' modifier adds an implicit operand) [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1321: too many colons in asm statement [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1322: register "xxxx" used more than once [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1323: register "xxxx" is both used and clobbered [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1324: register "xxxx" clobbered more than once [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1325: register "xxxx" has a fixed purpose and may not be used in an asm statement [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1326: register "xxxx" has a fixed purpose and may not be clobbered in an asm statement [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1327: an empty clobbers list must be omitted entirely [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1328: expected an asm operand [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1329: expected a register to clobber [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1330: "format" attribute applied to entity-kind "entity" which does not have variable arguments [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1331: first substitution argument is not the first variable argument [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1332: format argument index is greater than number of parameters [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1333: format argument does not have string type [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1334: the "template" keyword used for syntactic disambiguation may only be used within a template [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1337: attribute does not apply to non-function type "type" [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1338: arithmetic on pointer to void or function type [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1339: storage class must be auto or register [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1340: "type" would have been promoted to "type" when passed through the ellipsis parameter; use the latter type instead [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1341: "xxxx" is not a base class member [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1342: __super cannot appear after "::" [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1343: __super may only be used in a class scope [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1344: __super must be followed by "::" [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1345: possible missing closing quote; scanning a multi-line string [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1346: task directive must be in lexical extent of taskq directive [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1347: taskq construct must be the nearest lexically enclosing construct for any task directive [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1348: invalid makefile dependency file [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1349: cannot open makefile dependency file [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1350: dependency option must also be specified [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1351: [ xxxx instantiation contexts not shown ] [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1352: mangled name is too long [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1353: directive cannot contain more than one stride clause [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1354: xxxx directive must be in lexical extent of thread directive [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1355: Variable in ssp thread construct must appear in exactly one of shared, capture private, or sync clause [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1356: directive bound to non-loop [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1357: optimization disabled due to excessive resource requirements; contact http://www.intel.com/software/products/support for assistance [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1358: declaration aliased to undefined entity "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:52 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1359: declaration does not match its alias entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1360: entity declared as alias cannot have definition [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1361: variable-length array field type will be treated as zero-length array field type [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1362: nonstandard cast on lvalue ignored [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1363: unrecognized flag name [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1364: void return type cannot be qualified [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1365: the auto specifier is ignored here (invalid in standard C/C++) [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1366: a reduction in alignment without the "packed" attribute is ignored [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1367: a member template corresponding to "entity" is declared as a template of a different kind in another translation unit [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1368: excess initializers are ignored [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1369: va_start should only appear in a function with an ellipsis parameter [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1370: the "short_enums" option is only valid in GNU C mode [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1371: invalid export information file "xxxx" at line number xxxx [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1372: inline function also declared as an alias; definition ignored [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1373: ordered region may not be closely nested inside a critical region [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1374: pragma xxxx does not take any arguments [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1375: xxxx must have external linkage in order to be imported/exported [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1376: The smallest statement containing a "xxxx" pragma must be a block or compound statement [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1377: "xxxx" branches to or from an OpenMP structured block are illegal [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1378: Variable "entity" in OpenMP schedule clause should appear on shared list [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1379: copyin variable "entity" in OpenMP parallel pragma must appear earlier in thread private pragma [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1380: variable "entity" on COPYPRIVATE list must have private semantics in region [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1381: variable "entity" on COPYPRIVATE list cannot appear on a PRIVATE or FIRSTPRIVATE list also [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1382: Index variable "entity" on OpenMP worksharing construct must be shared on the corresponding region pragma [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1383: index variable "entity" of for statement following an OpenMP for pragma must be private [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1384: reduction variable "entity" must be shared on entry to this OpenMP pragma [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1385: "xxxx" clause of OpenMP pragma cannot contain threadprivate variable "entity" [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1386: "entity" must be specified in a variable list at enclosing OpenMP parallel pragma [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1387: "entity" can only appear on one data scope attribute clause in an OpenMP pragma (except firstprivate and lastprivate) [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1388: "section" OpenMP pragma must appear immediately inside a "sections" block [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1389: a for statement must follow an OpenMP for pragma [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1390: OpenMP chunksize must be greater than zero [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1391: the OpenMP "xxxx" pragma must not be enclosed by the "xxxx" pragma [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1392: variable "entity" in firstprivate or lastprivate clause of an OpenMP pragma must be shared in the enclosing context [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1393: "ordered" pragma must be enclosed by a "xxxx" OpenMP block which is ordered [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1394: "ordered" OpenMP pragma must be nested in "task" [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1395: task OpenMP pragma must bind to a taskq pragma in the current function [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1396: "sections" OpenMP pragma must be on a block [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1397: "ordered" pragma must be enclosed by a xxxx OpenMP block [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1398: any block but the first must have "section" OpenMP pragma [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1399: OpenMP pragma in "sections" should be "section", not "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1400: NetGuide (DVSM) requires main to have at least two parameters (argc,argv) [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1402: OpenMP for increment must be an integer, pointer, or random access iterator [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1403: Index variable "entity" in OpenMP "for" cannot be a reference type [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1404: Initial condition value of OpenMP for must be an integer, pointer, or random access iterator [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1405: An OpenMP "for" must have a loop-invariant increment of integer, pointer,or random access iterator type [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1406: the for statement following an OpenMP for pragma must have an initializer of the form = [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1407: the for statement following an OpenMP for pragma must have a conditional of the form {<,<=,>=,>} [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1408: Terminating condition value of OpenMP for must be an int, pointer, or random access iterator comparison [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1409: Variable must have an accessible, unambiguous default constructor [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1410: Chunk_size not allowed with schedule(runtime) [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1411: Threadprivate directive must lexically precede all references to any variables in its list [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1412: variable type "type" not suitable for a register [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1413: register xxxx's type does not match variable type "type" [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1414: statement expressions are only allowed in block scope [База знаний] ...
Posted: 2008-11-16 21:51:53 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1416: an asm name is ignored on a non-register automatic variable [База знаний] ...
Posted: 2008-11-16 21:51:54 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1417: xxxx variable cannot be specified in this clause [База знаний] ...
Posted: 2008-11-16 21:51:54 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1418: external function definition with no prior declaration [База знаний] Cause:A function with no declaration in header (".h") file is defined in a ".cpp" file. You may see this remark when highest warning level is used W4 for 11.0 or older compiler, W5 for newer or Inte ...
Posted: 2009-03-20 17:40:36 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1419: external declaration in primary source file [База знаний] Cause:When a function is declared in a ".cpp" file instead of ".h" file, you will get this remark if you use the highest warning level - W4 for 11.0 or older, W5 for newer or Intel Parallel Compose ...
Posted: 2009-03-20 17:46:57 by Jennifer Jiang (Intel) | error, warning, remark |
Diagnostic 1420: declaration in for-initializer hides a declaration in the surrounding scope [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1421: the hidden declaration is at line xxxx [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1422: xxxx not found; Intel(R) Threading Tools must be installed [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1423: a static data member declared "dllimport" may not be defined [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1424: intrinsic parameter must be an immediate value [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1425: throw cannot be used to exit xxxx region [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1426: copyprivate and nowait cannot be used together [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1427: const qualifier on asm is ignored [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1429: variable declaration hides declaration in for-initializer [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1430: typedef "xxxx" may not be used in an elaborated type specifier [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1431: call of zero constant ignored [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1432: Gnu-style asm must use __asm__ keyword when -use_msasm is specified [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1434: default value must be one of {shared,none} [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1435: unimplemented STDC pragma ignored [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1436: nonstandard cast to array type ignored [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1437: expected an integer constant between 0 and xxxx. Assuming value of 0. [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1438: variable "entity" in private, firstprivate, or lastprivate clause of an OpenMP pragma must not be a reduction variable in the enclosing context [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1439: unrecognized UPC pragma [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1440: shared block size does not match one previously specified [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1441: bracketed expression is assumed to be a block size specification rather than an array dimension [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1442: the block size of a shared array must be greater than zero [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1443: multiple block sizes not allowed [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1444: strict or relaxed requires shared [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1445: THREADS not allowed in this context [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1446: block size specified exceeds the maximum value of xxxx [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1447: function returning shared is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1449: one dimension of an array of a shared type must be a multiple of THREADS when the number of threads is nonconstant [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1450: shared type inside a struct or union is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1451: parameters may not have shared types [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1452: a dynamic THREADS dimension requires a definite block size [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1453: shared variables must be static or extern [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1454: argument of upc_blocksizeof is a pointer to a shared type (not shared type itself) [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1455: affinity expression ignored in nested upc_forall [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1456: branching into or out of a upc_forall loop is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1457: affinity expression must have a shared type or point to a shared type [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1458: affinity has shared type (not pointer to shared) [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1459: shared void* types can only be compared for equality [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1460: UPC mode is incompatible with C++ and K&R modes [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1461: null (zero) character in input line ignored [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1462: null (zero) character in string or character constant [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1463: null (zero) character in header name [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1464: the prototype declaration of entity-kind "entity" (declared at line xxxx) is ignored after this unprototyped redeclaration [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1466: entity-kind "entity" (declared at line xxxx) must have external C linkage [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1467: parameter "xxxx" may not be redeclared in a catch clause of function try block [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1468: the initial explicit specialization of entity-kind "entity" must be declared in the namespace containing the template [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1469: "cc" clobber ignored [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1470: "template" must be followed by an identifier [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1471: MYTHREAD not allowed in this context [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1472: layout qualifier cannot qualify pointer to shared [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1473: layout qualifier cannot qualify an incomplete array [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1474: declaration of "xxxx" hides handler parameter [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1475: this pragma cannot be used in a _Pragma operator (a #pragma directive must be used) [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1477: GNU C++ compilers may use bit field padding [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1478: entity-kind "entity" (declared at line xxxx) was declared "deprecated" [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1479: this anonymous union/struct field is hidden by entity-kind "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1480: an asm name is not allowed on a nonstatic member declaration [База знаний] ...
Posted: 2008-11-16 21:51:54 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1481: labels can be referenced only in function definitions [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1482: xxxx : jump out of __finally block has undefined behaviour during termination handling [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1483: transfer of control into a statement expression is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1485: this statement is not allowed inside of a statement expression [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1486: a non-POD (Plain Old Data) class definition is not allowed inside of a statement expression [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1487: destructible entities are not allowed inside of a statement expression [База знаний] Cause:
GNU* statement expressions are described here: http://gcc.gnu.org/onlinedocs/gcc/Statement-Exprs.html
The diagnostic occurs if you declare an object with a destructor inside one of these expr ...
Posted: 2009-09-28 10:49:14 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1488: a dynamically-initialized local static variable is not allowed inside of a statement expression [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1489: a variable-length array is not allowed inside of a statement expression [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1490: a statement expression is not allowed inside of a default argument [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1491: definition from the enclosing scope entity-kind "entity" (declared at line xxxx) :is used. definition from the for loop entity-kind "entity" (declared at line xxxx) is ignored [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1492: value of pragma conform(forScope, show) == "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1493: expected pragma parameter to be 'on' or 'off' [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1494: #pragma conform(pop,...) : did not find previously pushed identifier "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1495: unexpected token 'identifier' [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1496: sharable variable should not be incomplete or reference type [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1497: sharable directive must lexically precede all references to any variables in its list [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1498: unrecognized format function type "xxxx" ignored [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1499: base class "entity" uses tail padding of base class "entity" [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1500: the "init_priority" attribute can only be used for definitions of static data members and namespace scope variables of class types [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1501: requested initialization priority is reserved for internal use [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1502: invalid error number [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1503: invalid error tag [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1504: expected an error number or error tag [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1505: size of class is affected by tail padding [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1506: unexpected argument for noprefetch [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1507: expected positive integer [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1508: invalid GNU version number: [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1509: GNU layout bug not emulated because it places virtual base "entity" outside "entity" object boundaries [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1510: virtual base "entity" placed outside "entity" object boundaries [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1511: nonstandard conversion between pointer to function and pointer to data [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1512: interface types cannot have virtual base classes [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1513: interface types cannot specify "private" or "protected" [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1514: interface types can only derive from other interface types [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1515: "type" is an interface type [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1516: interface types cannot have typedef members [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1517: interface types cannot have user-declared constructors or destructors [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1518: interface types cannot have user-declared member operators [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1519: interface types cannot be declared in functions [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1520: cannot declare interface templates [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1521: interface types cannot have data members [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1522: interface types cannot contain friend declarations [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1523: interface types cannot have nested classes [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1524: interface types cannot be nested class types [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1525: interface types cannot have member templates [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1526: interface types cannot have static member functions [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1527: this pragma cannot be used in a __pragma operator (a #pragma directive must be used) [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1528: qualifier must be base class of "type" [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1529: declaration must correspond to a pure virtual member function in the indicated base class [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1530: integer overflow in internal computation due to size or complexity of "type" [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1531: integer overflow in internal computation [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1532: __w64 can only be specified on int, long, and pointer types [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1533: potentially narrowing conversion when compiled in an environment where int, long, or pointer types are 64 bits wide [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1534: current value of pragma pack is xxxx [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1535: arguments for pragma pack(show) are ignored [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1536: invalid alignment specifier value [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1537: expected an integer literal [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1538: earlier __declspec(align(...)) ignored [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1539: expected an argument value for the "xxxx" attribute parameter [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1540: invalid argument value for the "xxxx" attribute parameter [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1541: expected a boolean value for the "xxxx" attribute parameter [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1542: a positional argument cannot follow a named argument in an attribute [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1543: attribute "xxxx" has no parameter named "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1544: expected an argument list for the "xxxx" attribute [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1545: expected a "," or "]" [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1546: attribute argument "xxxx" has already been given a value [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1547: a value cannot be assigned to the "xxxx" attribute [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1548: a throw expression may not have pointer-to-incomplete type [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1549: alignment-of operator applied to incomplete type [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1550: "xxxx" may only be used as a standalone attribute [База знаний] ...
Posted: 2008-11-16 21:51:55 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1551: "xxxx" attribute cannot be used here [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1552: unrecognized attribute "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1553: attributes are not allowed here [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1554: invalid argument value for the "xxxx" attribute parameter [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1555: too many attribute arguments [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1556: conversion from inaccessible base class "type" is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1557: option "export" requires distinct template signatures [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1558: reduction in alignment ignored [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1559: target floating-point format does not support infinities [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1560: storage class xxxx applied to explicit template instantiation for entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1561: expr in "goto *expr" is constant [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1562: a strong using-directive may only appear in a namespace scope [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1564: x87 fp instruction is not supported [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1565: attributes are ignored on a class declaration that is not also a definition [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1566: '_alloca' cannot be called from within a filter expression or __finally block [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1567: '_alloca' cannot be called from within a catch block [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1568: xxxx : bad context for intrinsic function [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1569: class member typedef may not be redeclared [База знаний] Cause:
This diagnostic is triggered when you redeclare a typedef (to the same type) within a class.
Member typedefs cannot be redeclared in strict C++ mode (clarified in TC1; see 7.1.3/2 in the 2003 ...
Posted: 2009-09-28 10:51:42 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1570: Only one form of exception handling permitted per function [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1571: const_cast to enum type is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1573: try block found but exception handling is disabled [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1574: struct, class, and union are not supported for prefetch or noprefetch [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1575: bit field can not be statically initialized with an address [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1576: invalid 'asm': nested assembly dialect alternatives [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1577: invalid `asm': unterminated assembly dialect alternative [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1592: "xxxx" was specified with /Yc or /Yu; related #include not found [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1593: "xxxx" was specified with /Yc or /Yu; related #include not found before #pragma hdrstop [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1594: function returns incomplete class type "type" [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1596: Made sharable: entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1597: Not made sharable: entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1598: Check that argument associated with entity-kind "entity" at each call site is sharable [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1599: declaration hides entity-kind "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1600: using an integer to specify a register is not portable [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1603: __clrcall not supported [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1604: __clrcall can only be called from managed code [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1605: inline assembler syntax error [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1606: MMX instructions are not supported on this platform [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1607: a thread-local variable cannot be declared with "dllimport" or "dllexport" [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1608: an initializer cannot be specified for a flexible array member whose elements have a nontrivial destructor [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1609: an initializer cannot be specified for an indirect flexible array member [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1610: Could not open message catalog xxxx in NLSPATH/LANG. Using internal messages. [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1611: string literals with different character kinds cannot be concatenated [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1612: nonstandard qualified name in namespace member declaration [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1613: const qualifier ignored [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1614: invalid GNU asm qualifiers [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1615: a non-POD (Plain Old Data) class type cannot be fetched by va_arg [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1616: the 'u' or 'U' suffix must appear before the 'l' or 'L' suffix in a fixed-point literal [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1617: option "fixed_point" can be used only when compiling C [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1618: integer operand may cause fixed-point overflow [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1619: fixed-point constant is out of range [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1620: fixed-point value cannot be represented exactly [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1621: constant is too large for long long; given unsigned long long type (nonstandard) [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1622: layout qualifier cannot qualify pointer to shared void [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1623: duplicate THREADS in multidimensional array type [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1624: entity-kind "entity" declares a non-template function -- add <> to refer to a template instance [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1625: operation may cause fixed-point overflow [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1626: expression must have integral, enum, or fixed-point type [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1627: expression must have integral or fixed-point type [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1628: function declared with "noreturn" does return [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1629: asm name ignored because it conflicts with a previous declaration [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1630: fixed-point value implicitly converted to floating-point type [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1631: fixed-point types have no classification [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1632: a template parameter may not have fixed-point type [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1633: hexadecimal floating-point constants are not allowed [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1634: option "named_address_spaces" can be used only when compiling C [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1635: floating-point value does not fit in required fixed-point type [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1636: value cannot be converted to fixed-point value exactly [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1637: fixed-point conversion resulted in a change of sign [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1638: integer value does not fit in required fixed-point type [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1639: fixed-point operation result is out of range [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1640: multiple named address spaces [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1641: variable with automatic storage duration cannot be stored in a named address space [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1642: type cannot be qualified with named address space [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1643: function type cannot be qualified with named address space [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1644: field type cannot be qualified with named address space [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1645: fixed-point value does not fit in required floating-point type [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1646: fixed-point value does not fit in required integer type [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1647: value does not fit in required fixed-point type [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1648: option "named_registers" can be used only when compiling C [База знаний] ...
Posted: 2008-11-16 21:51:56 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1649: a named-register storage class is not allowed here [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1650: entity-kind "entity" (declared at line xxxx) redeclared with incompatible named-register storage class [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1651: named-register storage class cannot be specified for aliased variable [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1652: named-register storage specifier is already in use [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1653: option "embedded_c" cannot be combined with options to control individual Embedded C features [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1654: invalid EDG_BASE directory: [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1655: cannot open predefined macro file: "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1656: invalid predefined macro entry at line xxxx: xxxx [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1657: invalid macro mode name "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1658: incompatible redefinition of predefined macro "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1659: redeclaration of entity-kind "entity" (declared at line xxxx) is missing a named-register storage class [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1660: named register is too small for the type of the variable [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1661: arrays cannot be declared with named-register storage class [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1662: option "embedded_c" can be used only when compiling C [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1663: expected "on" or "off" [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1664: expected "precise", "except", "push", or "pop" [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1665: expected a "," or ")" [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1666: expected "push" [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1667: exception semantics must be turned off before turning off this float_control mode [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1668: fenv_access must be turned off before turning off this float_control mode [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1669: exception semantics cannot be enabled except in precise, source, double, and extended modes [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1670: this pragma may only appear between declarations in the global scope or before any statements or declarations in a block scope [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1671: unsupported floating-point model "fast" argument: [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1672: invalid expression in pragma will be ignored [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1673: invalid locality, should be "l1", "l2", "l3", or "mem" [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1674: invalid latency, should be "l1_latency", "l2_latency", "l3_latency", or "mem_latency" [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1675: fenv_access cannot be enabled except in precise, source, double, and extended modes [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1676: unsupported argument to floating-point option: [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1677: cannot restore a non-precise floating-point mode while fenv_access is enabled [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1678: cannot enable speculation unless fenv_access and exception_semantics are disabled [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1679: floating-point accuracy option conflicts with the floating-point mode specification [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1680: this option conflicts with the floating-point mode specification: [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1681: the "extended" floating-point model is not supported on this platform [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1682: implicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem) [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1683: explicit conversion of a 64-bit integral type to a smaller integral type (potential portability problem) [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1684: conversion from pointer to same-sized integral type (potential portability problem) [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1686: local variable exceeds maximum allowable size [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1687: total size of local stack frame exceeds maximum allowable size [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1688: total size of parameter block exceeds maximum allowable size [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1689: invalid use of access specifier is ignored [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1690: optimization level must be between 0 and 3 [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1691: optimization level applies only to function definitions [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1692: white space between backslash and newline in line splice ignored [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1693: __except may not appear in termination block [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1694: byte order must be 'littleendian', 'bigendian', 'default', or 'default_header' [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1695: byte order stack is empty, pop ignored [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1696: implicit pointer conversion changes byte order [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1697: pointer conversion changes byte order [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1698: extern prefix stack is empty, pop ignored [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1699: pragma parameter must be 'push', 'pop', or prefix string [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1700: adjacent bit fields have different byte order [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1701: cannot use poisoned identifier [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1702: poisoning an existing macro [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1703: NULL format string [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1704: zero-length format string [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1705: embedded null character in format string [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1706: byte order attributes are not supported here [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1707: invalid regular expression: [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1708: cannot open prolog file "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1709: cannot open epilog file "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1710: reference to statically allocated variable "entity" [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1711: assignment to statically allocated variable "entity" [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1712: address taken of statically allocated variable "entity" [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1713: a named address space qualifier is not allowed here [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1714: an empty initializer is invalid for an array with unspecified bound [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1715: entity-kind "entity" has already been initialized; the out-of-class initializer will be ignored [База знаний] ...
Posted: 2008-11-16 21:51:57 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1716: a parameter cannot be allocated in a named address space [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1717: invalid suffix on fixed-point or floating-point constant [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1718: a register variable cannot be allocated in a named address space [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1719: expected "SAT" or "DEFAULT" [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1721: a function return type cannot be qualified with a named address space [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1722: variable attributes appearing after a parenthesized initializer are ignored [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1723: the result of this cast cannot be used as an lvalue [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1724: negation of an unsigned fixed-point value [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1725: this operator is not allowed at this point; use parentheses [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1726: flexible array member initializer must be constant [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1727: register names can only be used for register variables [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1728: named-register variables cannot have void type [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1729: __declspec modifiers not valid for this declaration [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1730: parameters cannot have link scope specifiers [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1731: multiple link scope specifiers [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1732: link scope specifiers can only appear on functions and variables with external linkage [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1733: a redeclaration cannot weaken a link scope [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1734: link scope specifier not allowed on this declaration [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1735: nonstandard qualified name in global scope declaration [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1736: dllexport/dllimport conflict with "entity" (declared at line xxxx); dllimport/dllexport dropped [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1737: dllexport and dllimport are ignored on class templates [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1739: redeclaration cannot add dllexport/dllimport to "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1740: dllexport/dllimport conflict with "entity" (declared at line xxxx); dllexport assumed [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1741: cannot define dllimport entity [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1742: dllexport/dllimport requires external linkage [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1743: a member of a class declared with dllexport/dllimport cannot itself be declared with such a specifier [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1745: member entity-kind "entity" (declared at line xxxx) already has an explicit dllexport/dllimport specifier [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1747: illegal symbol for assembly operand1748: pascal string exceeds 255 bytes [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1749: unknown alignment specifier, expecting [reset|power|natural|mac68k|packed] [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1750: unknown options type, expecting align [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1751: invalid symbolic operand name "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1752: a symbolic match constraint must refer to one of the first ten operands [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1753: positional format specifier cannot be zero [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1754: only static and extern variables can use thread-local storage [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1755: multiple thread-local storage specifiers [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1756: friend specifier is not allowed in a class definition; friend specifier is ignored [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1757: virtual entity-kind "entity" was not defined (and cannot be defined elsewhere because it is a member of an unnamed namespace) [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1758: carriage return character in source line outside of comment or character/string literal [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1759: expression must have fixed-point type [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1760: pointer converted to bool [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1761: pointer-to-member converted to bool [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1762: storage specifier ignored [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1763: parenthesized member declaration is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1764: invalid member for anonymous member class -- class [База знаний] Cause:Non-static data members of an anonymous member class may not be objects with a constructor, a destructor, or a user-defined assignment operator. Example:struct S { S(); }; struct N { struct { ...
Posted: 2009-05-28 14:19:53 by Ganesh Rao (Intel), Mark Sabahi (Intel) | error, warning, remark |
Diagnostic 1765: nonstandard reinterpret_cast [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1766: a local class cannot reference a variable-length array type from an enclosing function [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1767: a variable-length array is not allowed in a function return type [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1768: variable-length array type is not allowed in pointer to member of type "type" [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1769: the result of a statement expression cannot have a type involving a variable-length array [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1770: conversion drops "__unaligned" qualifier [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1771: sharable propagation failed for routine "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1772: sharable pragma should be inserted by user '#pragma intel omp sharable(xxxx)' [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1773: ensure that argument xxxx of function call is declared as sharable [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1774: global variable "xxxx" not made sharable since it is not allocated space in any compilation unit [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1775: sharable directive should be inserted by user for expression used as an argument xxxx [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1776: weak aliases not supported; pragma ignored [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1777: xxxx [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1778: xxxx: xxxx [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1781: thread-local storage is not supported in this environment [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1783: template argument list of "xxxx" must match the parameter list [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1784: the "xxxx" macro is deprecated and will not be defined by the compiler in a future release [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1786: entity-kind "entity" (declared at line xxxx) was declared "deprecated ("xxxx") " [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1787: alias definitions not supported on this platform; attribute ignored [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1788: __thiscall can only appear on nonstatic member function declarations [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1789: asm blocks not enabled, use -fasm-blocks [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1790: use of __if_exists is not supported in this context [База знаний] ...
Posted: 2008-11-16 21:51:58 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1791: __if_exists block not closed in the same scope in which it was opened [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1793: external variable definition with no prior declaration [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1872: byte order mismatch in format string conversion [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1873: byte order is incompatible with entity-kind "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1874: expected a class, struct, or union type [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1875: offsetof applied to non-POD (Plain Old Data) types is nonstandard [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1876: second operand of offsetof may not be a bit field [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1877: cannot apply offsetof to a member of a virtual base [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1878: second operand of offsetof must be a field [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1879: unimplemented pragma ignored [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1880: attribute "sentinel" requires an ellipsis parameter [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1881: argument must be a constant null pointer value [База знаний] Cause:
The sentinel attribute is described in the GNU* documentation here: http://gcc.gnu.org/onlinedocs/gcc-4.4.1/gcc/Function-Attributes.html#Function-Attributes
It says:
A valid NULL in this c ...
Posted: 2009-11-16 16:44:26 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1882: insufficient number of arguments for sentinel value [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1883: sentinel argument must correspond to an ellipsis parameter [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1884: the #pragma region for this #pragma endregion is missing [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1885: #pragma region unclosed at end of file [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1886: underlying type of enum type must be an integral type other than bool [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1887: some enumerator constants cannot be represented by "type" [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1888: some enumerator values cannot be represented by the integral type underlying the enum type [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1889: support for trigraphs is disabled [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1890: the "xxxx" attribute can only appear on functions and variables with external linkage [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1891: strict mode is incompatible with treating namespace std as an alias for the global namespace [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1897: thread-local variable cannot be dynamically initialized [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1898: default argument is not allowed on a friend class template declaration [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1899: multicharacter character literal (potential portability problem) [База знаний] ...
Posted: 2009-02-02 15:34:24 by Grishma Kotecha (Intel), Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1900: default arguments are not allowed on a friend declaration of a member function [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1901: default arguments are not allowed on friend declarations that are not definitions [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1902: redeclaration of entity-kind "entity" (declared at line xxxx) previously declared as a friend with default arguments is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1903: invalid qualifier for "type" (a derived class is not allowed here) [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1904: invalid qualifier for definition of class "type" [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1905: "xxxx" is only allowed in C [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1906: __ptr32 and __ptr64 must follow a "*" [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1907: __ptr32 and __ptr64 cannot both apply [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1908: an incomplete class type is not allowed [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1909: complex integral types are not supported [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1910: __real and __imag can only be applied to complex values [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1911: __real/__imag applied to real value [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1912: invalid redefinition of entity-kind "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1913: dllimport/dllexport applied to a member of an unnamed namespace [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1914: __thiscall not allowed on function with ellipsis parameter [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1915: feedback file "xxxx" missing [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1916: no dynamic information available for feedback [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1917: compilation aborted due to profile mismatch [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1918: total routines: xxxx, routines w/o profile info: xxxx [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1919: "xxxx" declared extern during feedback, but static during instrumentation;value profiling disabled for this routine [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1920: no dynamic profile for xxxx: computing static profile [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1921: profile information will be ignored for "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1922: value profiling mismatch; value profiling will be ignored for "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1923: no value profile information available in .dpi file [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1924: value profiling of divides was requested, but information is not available in .dpi file [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1925: value profiling of shifts was requested, but information is not available in .dpi file [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1926: value profiling of memcpy/memset was requested, but information is not available in .dpi file [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1927: Open MP for-init variable should be little-endian [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1928: header file "xxxx" used in PCH has changed [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1929: no prior push_macro for "xxxx" [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1930: wide string literal not allowed [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1931: explicit specialization of entity-kind "entity" must precede its first use (at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1932: a sealed class type cannot be used as a base class [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1933: duplicate class modifier [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1934: a member function cannot have both the "abstract" and "sealed" modifiers [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1935: a sealed member cannot be pure virtual [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1936: nonvirtual function cannot be declared with "abstract" or "sealed" modifier [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1937: member function declared with "override" modifier does not override a base class member [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1938: cannot override sealed entity-kind "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1939: entity-kind "entity" (declared at line xxxx) was declared with the class modifier "abstract" [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1940: duplicate function modifier [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1941: invalid parallel pragma [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1942: name linkage conflicts with previous declaration of entity-kind "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1943: invalid loop count [База знаний] ...
Posted: 2008-11-16 21:51:59 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1944: declaration of "xxxx" shadows a member of 'this' [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1945: the shadowed declaration is at line xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1946: trigraph detected and converted [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1947: invalid character for char16_t literal [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1948: __LPREFIX cannot be applied to char16_t or char32_t literals [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1949: option "--uliterals" can be used only when compiling C [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1950: missing mudflap routine. -fmudflap suppressed [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1951: setjmp is not allowed in function with naked attribute [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1952: fatal error: compilation terminated [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1953: unsupported push of segment reg -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1954: label "xxxx" not defined -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1955: maximum label length (xxxx chars) exceeded -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1956: opcode xxxx unsupported by architecture -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1957: unknown opcode "xxxx" -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1958: unsupported instruction form -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1959: operand size mismatches its default size -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1960: syntax error: variable reference -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1961: syntax error: function reference -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1962: syntax error xxxx -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1963: pop [ds|es|ss] unsupported by architecture -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1964: push [cs|ds|es|ss] unsupported by architecture -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1965: unsupported pop of segment reg -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1966: operand size mismatch -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1967: port register must be DX -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1968: data register must be AL/AX/EAX/RAX -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1969: data register must be AL/AX/EAX -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1970: operand xxxx must be ST -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1971: register operand must be AX -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1972: shift count register must be CL -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1973: cmps bad memory operands (must be [rsi],[rdi]) -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1974: cmps bad memory operands (must be [esi],[edi]) -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1975: movs bad memory operands (must be [rdi],[rsi]) -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1976: movs bad memory operands (must be [edi],[esi]) -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1977: __LOCAL_SIZE only valid in 'naked' function -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1978: bad size qualifier -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1979: bad memxxxx qualifier -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1980: bad memvx128 qualifier -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1981: too many regs in param/local address -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1982: illegal use of esp as index register -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1983: illegal use of ebp in param/local address -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1984: illegal use of esp in param/local address -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1985: illegal gp reg in address (must be xxxx-bit) -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1986: illegal alignment amount -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1987: illegal operand -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1988: illegal compare relations -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1989: operand xxxx: variable used in illegal context -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1990: operand xxxx: more than one variable reference -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1991: operand xxxx: routine name used in illegal context -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1992: operand xxxx: bad expression operand -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1993: operand xxxx: illegal NOT of variable -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1994: operand xxxx: illegal negate ('-') of variable -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1995: operand xxxx: illegal scale -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1996: operand xxxx: illegal register -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1997: operand xxxx: divide by zero -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1998: operand xxxx: modulus by zero -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 1999: operand xxxx: illegal reg in address -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2000: operand xxxx: illegal index register -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2001: operand xxxx: illegal index reg in address -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2002: operand xxxx: illegal fp index -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2003: operand xxxx: illegal base register -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2004: operand xxxx: illegal base/index register -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2005: illegal "xxxx" by variable -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2006: instruction should be replaced with "xxxx" -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2007: immediate value is too large, value is truncated -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2008: immxxxx value too large -- __asm xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2009: illegal size for operand xxxx xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2010: offset is too large for a short xxxx xxxx [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2011: predefined meaning of "entity" discarded [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2012: Effective C++ Item 1 prefer const and inline to #define [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2013: Effective C++ Item 2 prefer iostream to stdio. [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2014: Effective C++ Item 3 prefer new and delete to malloc and free [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2015: Effective C++ Item 4 prefer C++ style comments [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2016: Effective C++ Item 5 don't mix scalar new with array delete and visa versa. [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2017: Effective C++ Item 6 missing delete of member pointer entity-kind "entity" in destructor [База знаний] ...
Posted: 2008-11-16 21:52:00 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2018: Effective C++ Item 8 Adhere to convention when writing operator new and delete [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2019: Effective C++ Item 9 avoid hiding global new [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2020: Effective C++ Item 10 always write new and deletes in pairs [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2021: Effective C++ Item 11 declare a copy constructor and assignment operator for xxxx [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2022: Effective C++ Item 12 field entity-kind "entity" not initialized (preferable to assignment in constructors) [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2023: Effective C++ Item 13 initialize fields in order they are declared [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2024: Effective C++ Item 13 initialize base classes before fields [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2025: Effective C++ Item 13 initialize base classes in derivation list order [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2026: Effective C++ Item 14 Make sure base classes have virtual destructors [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2027: Effective C++ Item 15 make sure operator = returns a *this [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2028: Effective C++ Item 16 assign to all member in operator = [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2029: Effective C++ Item 17 check for assign to self in operator = [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2030: Effective C++ Item 20 avoid data members in public [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2031: Effective C++ Item 21 use const whenever possible [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2032: Effective C++ Item 22 prefer pass by ref to pass by value [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2033: Effective C++ Item 25 beware overloading on both int and a pointer [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2034: Effective C++ Item 26 potential ambiguity [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2035: Effective C++ Item 27 class has array semantics, but assign or copy constructor missing [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2036: Effective C++ Item 28 consider putting interface class declarations in a namespace [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2037: Effective C++ Item 29 don't return pointers to internal data as it defeats constness [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2038: Effective C++ Item 32 variables are constructed that are never used if exception is thrown [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2039: Effective C++ Item 34 don't use classes in classes - use pointers [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2040: Effective C++ Item 34 included header file never used [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2041: Effective C++ Item 34 class is included but could have been abstract [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2042: Effective C++ Item 37 never redefine an inherited nonvirtual function [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2043: Effective C++ Item 38 never redefine an inherited default parameter value [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2044: Effective C++ Item 39 avoid down-casts [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2045: Effective C++ Item 47 changes in elaboration ordering may result in unexpected program behavior [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2046: More Effective C++ Item 6; prefix forms of xxxx should return a reference [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2047: More Effective C++ Item 6; postfix forms of xxxx should return a const value [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2048: More Effective C++ Item 7; user defined xxxx has unexpected evaluation semantics [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2049: the "xxxx" attribute can only appear on functions and variables with internal linkage [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2050: alias creates cycle of aliased entities [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2051: Labels are currently unsupported - 'xxxx' [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2052: Assignment statements are currently unsupported - 'xxxx' [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2053: Directives are currently unsupported - 'xxxx' [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2054: Floating-point constants are currently unsupported in xxxx [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2055: The '.' symbol is currently unsupported in xxxx [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2056: The direct symbol reference in xxxx is currently unsupported. Access symbols through the asm interface. [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2057: Escape sequence is unsupported in xxxx [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2058: Unrecognized instruction prefix 'xxxx' [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2059: Unbalanced parentheses in xxxx [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2060: 'xxxx' operator is unsupported in xxxx [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2061: Need '*' in indirect xxxx [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2062: Bad register name 'xxxx' in xxxx [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2063: Invalid segment register override 'xxxx' in xxxx [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2064: Invalid operand in xxxx [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2065: Invalid suffix 'xxxx' in xxxx [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2066: Cannot size instruction xxxx. Use a size suffix. [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2067: Register size does not match suffix in xxxx [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2068: unrecognized calling convention xxxx, must be one of: [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2070: attribute "xxxx" not allowed on parameter declarations [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2071: "xxxx" not allowed in current mode [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2072: option "--type_traits_helpers" can be used only when compiling C++ [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2073: __declspec(implementation_key(...) can appear only between #pragma start_map_region and #pragma stop_map_region [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2074: #pragma start_map_region already active: pragma ignored [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2075: no #pragma start_map_region is currently active: pragma ignored [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2076: entity-kind "entity" cannot be used to name a destructor (a type name is required) [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2077: nonstandard empty wide character literal treated as L'0' [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2078: "typename" may not be specified here [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2079: a non-placement operator delete must be visible in a class with a virtual destructor [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2080: subscript must be constant [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2081: a variable with static storage duration allocated in a specific register cannot be declared with an initializer [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2082: a variable allocated in a specific register must have POD (Plain Old Data) type [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2083: expected reset or an integer constant [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2084: designator may not specify a non-POD (Plain Old Data) subobject [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2085: visibility attribute ignored because it conflicts with a previous declaration [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2086: cannot initialize static variable with label address [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2087: Call to asm macro containing syntax or semantic errors - Fix problems causing asm macro warning(s) and recompile [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2088: static assertion failed with "xxxx" [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2089: definition of base class type not completed yet [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2090: GNU minimum/maximum operators are deprecated, use std::min and std::max instead [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2091: linkage name already specified [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2092: characteristic already specified [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2093: unknown linkage name [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2094: expected function name or function pointer typedef [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2095: "xxxx" characteristic is ignored [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2096: linkage does not match function parameters [База знаний] ...
Posted: 2008-11-16 21:52:01 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2097: linkage does not match function return type [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2098: linkage already specified for this function or type [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2099: linkage cannot be specified for function with a variable argument list [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2100: function prototype is required [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2102: violation of ansi-alias rules [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2103: forceinline could not be honored due to safety/correctness checks [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2104: routine is being compiled despite inline being explicit [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2105: routine is being compiled despite being implicitly priv and resident [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2106: the LoadLibrary call failed [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2107: spi file created in tpgospi file instead of pgopti.spi file [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2108: could not open .spi file [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2109: could not open .spl file [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2110: could not open .dpi file [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2111: corrupt spi file [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2112: could not create tmp .spi file [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2113: could not rewind tmp .spi file [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2114: profile mismatch. Need a new .dpi file [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2115: dpi file has old format. Need a new .dpi file [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2116: .dpi file has unrecognized header. Need a new .dpi file [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2117: Number of routines with profiling info is different than total number of routines [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2118: source changed since instrumentation [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2119: no .dpi info for routine available. Computing static profile [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2120: number of basic blocks doesn't match [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2121: profiling info is ignored when optlevel is less than 2 [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2122: can't fread file [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2123: can't ftell file [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2124: can't fseek file [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2125: __declspec(restrict) requires a function returning a pointer type [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2126: __declspec ignored (no variable or function declared) [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2127: the "report_gnu_extensions" option is only valid in GNU C and GNU C++ modes [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2128: variable-length array types are nonstandard [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2129: designators are nonstandard [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2130: this designator syntax is a GNU extension [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2131: compound literals are nonstandard [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2132: statement expressions are a GNU extension [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2133: GNU attributes are an extension [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2134: extended asm syntax is a GNU feature [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2135: volatile asm declarations are a GNU extension [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2136: asm name specifiers are a GNU extension [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2137: the "__restrict" qualifier is nonstandard [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2138: "typeof" is a GNU extension [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2139: modifying the size or signedness of a typedef is nonstandard [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2140: zero-length arrays are a GNU extension [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2141: flexible array members are nonstandard [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2142: return in memory is not allowed with #pragma linkage xxxx [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2143: not enough registers for array in #pragma linkage xxxx [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2144: not enough registers for structure in #pragma linkage xxxx [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2145: too many registers for structure or array in #pragma linkage xxxx [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2146: passing or returning a structure field in memory is not allowed in #pragma linkage xxxx [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2147: unknown register name xxxx in #pragma linkage xxxx [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2148: register xxxx is unsuitable for data type in #pragma linkage xxxx [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2149: size of structure or array is unsuitable for register xxxx in #pragma linkage xxxx [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2150: duplicate register in #pragma linkage xxxx [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2151: registers esp, ebp, and ebx cannot be used in #pragma linkage xxxx [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2152: x87 and MMX(TM) registers may not be preserved in #pragma linkage xxxx [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2153: x87 and MMX(TM) registers cannot be mixed in #pragma linkage xxxx [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2154: register may not be specified as both modified and preserved in #pragma linkage xxxx [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2155: XMM register cannot be preserved unless 16-byte stack aligned is guaranteed in #pragma linkage xxxx [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2156: incompatible #pragma linkage xxxx declarations [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2157: NULL defined to 0 (type is integer not pointer) [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2158: enum qualified name is nonstandard [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2159: anonymous union qualifier is nonstandard [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2160: anonymous union qualifier is ignored [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2161: __declspec(xxxx) ignored (it has no meaning for a C struct) [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2162: specifiers after comma between declarations are nonstandard [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2163: nonstandard specifier ignored [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2164: attributes are ignored on an enum declaration that is not also a definition [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2165: declaring a reference with "mutable" is nonstandard [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2166: a condition declaration for an array is always true [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2167: field name resolves to more than one offset -- see "entity" (declared at line xxxx) and "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2168: "xxxx" is not a field name [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2169: case label value has already appeared in this switch at line xxxx [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2170: a member function cannot have internal linkage [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2171: declaration hides built-in entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2172: declaration overloads built-in entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2173: the option to list macro definitions may not be specified when compiling more than one translation unit [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2174: unexpected parenthesis after declaration of entity-kind "entity" (malformed parameter list or invalid initializer?) [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2175: parentheses around a string initializer are nonstandard [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2177: a variable declared with an auto type specifier cannot appear in its own initializer [База знаний] ...
Posted: 2008-11-16 21:52:02 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2178: cannot deduce "auto" type [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2179: initialization with "{...}" is not allowed for "auto" type [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2180: "auto" type cannot appear in top-level array type [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2181: "auto" type cannot appear in top-level function type [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2182: a member of type "type" cannot have an in-class initializer [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2183: a member with an in-class initializer must be const [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2184: cannot deduce "auto" type (initializer required) [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2185: "auto" type is "type" for this entity, but was previously implied to be "type" [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2186: invalid constructor declaration [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2187: invalid use of a type qualifier [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2188: a union cannot be abstract or sealed [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2189: "auto" is not allowed here [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2190: "extern template" cannot refer to a specialization of static entity-kind "entity" (declared at line xxxx) [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2191: "extern template" cannot follow explicit instantiation of entity-kind "entity" [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2192: no parameter has pointer type [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2193: null argument provided for parameter marked with attribute "nonnull" [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2194: attribute "nonnull" references nonpointer parameter [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2195: argument for attribute "nonnull" is larger than number of parameters [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2196: routine is both "inline" and "noinline" ("noinline" assumed) [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2197: invalid cleanup routine [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2198: attribute "cleanup" requires automatic storage duration [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2199: attribute "cleanup" does not apply to parameters [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2200: cleanup routine has invalid type [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2201: call of cleanup routine requires suspect conversion [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2202: extern prefix does not match previous declaration [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2203: cast discards qualifiers from target type [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2204: first argument must be a pointer to integer or enumeration type [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2205: synchronized operations are valid only on objects of size 1, 2, 4, or 8 [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2206: extra arguments ignored [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2207: dllimport/dllexport is ignored on redeclaration using a qualified name [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2208: Segment or section name xxxx too long [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2209: attribute "xxxx" ignored in redeclaration [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2210: asm name ignored for previously defined entity [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2211: __sptr and __uptr must follow a "*" [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2212: __sptr and __uptr cannot both be specified [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2213: widening pointer conversion from "type" to "type" extends sign bit [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2214: __sptr and __uptr don't apply to pointer-to-member types [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2215: definition at end of file not followed by a semicolon or a declarator [База знаний]
Cause:
A header or source file does not have a terminator at the end of the file. This usually is followed by a syntax error in the file that includes the header file but can occur by itself if the ...
Posted: 2009-09-28 11:12:27 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2216: '=' assumed following macro name "xxxx" in command-line definition [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2217: white space is required between the macro name "xxxx" and its replacement text [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2218: result of call is not used [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2219: attribute is ignored for void return type [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2220: attribute requires pointer-to-function type [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2221: too many characters in character literal -- extra leading characters ignored [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2222: entity-kind "entity" cannot be declared inline after its definition at line xxxx [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2223: a statement expression is not allowed in a template-dependent typeof specifier [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2224: a statement expression is not allowed in a decltype specifier [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2225: UTF-16 (a.k.a. "Unicode") source files are not supported [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2226: OpenMP for-init variable "entity" must be an integer, pointer, or random access iterator type [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2227: directive cannot contain more than one untied clause [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2228: the smallest statement containing a taskwait must be a block or compound statement [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
Diagnostic 2229: OpenMP task directive ignored in this mode [База знаний] ...
Posted: 2008-11-16 21:52:03 by Ganesh Rao (Intel) | error, warning, remark |
| Diagnostic 2230: directive cannot contain more than one collapse clause [База |