Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Side by Side Diff: third_party/lzma_sdk/Compiler.h

Issue 1700453002: Update lzma_sdk sources to 15.14. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Chromium modifications Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/lzma_sdk/Bra86.c ('k') | third_party/lzma_sdk/CpuArch.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* Compiler.h
2 2015-08-02 : Igor Pavlov : Public domain */
3
4 #ifndef __7Z_COMPILER_H
5 #define __7Z_COMPILER_H
6
7 #ifdef _MSC_VER
8
9 #ifdef UNDER_CE
10 #define RPC_NO_WINDOWS_H
11 /* #pragma warning(disable : 4115) // '_RPC_ASYNC_STATE' : named type defini tion in parentheses */
12 #pragma warning(disable : 4201) // nonstandard extension used : nameless str uct/union
13 #pragma warning(disable : 4214) // nonstandard extension used : bit field ty pes other than int
14 #endif
15
16 #if _MSC_VER >= 1300
17 #pragma warning(disable : 4996) // This function or variable may be unsafe
18 #else
19 #pragma warning(disable : 4511) // copy constructor could not be generated
20 #pragma warning(disable : 4512) // assignment operator could not be generate d
21 #pragma warning(disable : 4514) // unreferenced inline function has been rem oved
22 #pragma warning(disable : 4702) // unreachable code
23 #pragma warning(disable : 4710) // not inlined
24 #pragma warning(disable : 4786) // identifier was truncated to '255' charact ers in the debug information
25 #endif
26
27 #endif
28
29 #define UNUSED_VAR(x) (void)x;
30 /* #define UNUSED_VAR(x) x=x; */
31
32 #endif
OLDNEW
« no previous file with comments | « third_party/lzma_sdk/Bra86.c ('k') | third_party/lzma_sdk/CpuArch.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698