(file) Return to wqlyacc.c CVS log (file) (dir) Up to [OMI] / omi / wql

 1 mike  1.1 /*
 2           **==============================================================================
 3           **
 4           ** Open Management Infrastructure (OMI)
 5           **
 6           ** Copyright (c) Microsoft Corporation
 7           ** 
 8           ** Licensed under the Apache License, Version 2.0 (the "License"); you may not 
 9           ** use this file except in compliance with the License. You may obtain a copy 
10           ** of the License at 
11           **
12           **     http://www.apache.org/licenses/LICENSE-2.0 
13           **
14           ** THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15           ** KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED 
16           ** WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, 
17           ** MERCHANTABLITY OR NON-INFRINGEMENT. 
18           **
19           ** See the Apache 2 License for the specific language governing permissions 
20           ** and limitations under the License.
21           **
22 mike  1.1 **==============================================================================
23           */
24           
25           #if defined(_MSC_VER)
26           
27           /* warning C4127: conditional expression is constant */
28           # pragma warning( disable : 4127 )
29           
30           /* warning C4244: '=' : conversion from '?' to '?', possible loss of data */
31           # pragma warning( disable : 4244 )
32           # pragma warning( disable : 4242 )
33           
34           /* warning C4102: 'yyerrlab' : unreferenced label */
35           # pragma warning( disable : 4102)
36           
37           /* warning C4706: assignment within conditional expression */
38           # pragma warning( disable : 4706 )
39           
40           /* Old-style declarator */
41           # pragma warning( disable : 4131)
42           
43 mike  1.1 /* PreFast - reviewed and believed to be false-positive*/
44           
45           /* warning C6385: Invalid data: accessing '??', the readable size is 'x' bytes, but 'y' bytes might be read: Lines: ... */
46           # pragma warning(disable : 6385)
47           # pragma warning(disable : 6011)
48           
49           #ifdef _PREFAST_
50           #pragma prefast (disable: 26014)
51           #pragma prefast (disable: 26001)
52           #endif
53           
54           #endif /* _MSC_VER */
55           
56           #include "wqlyaccinc.c"

ViewCVS 0.9.2