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

Side by Side Diff: Source/wtf/os-win32/inttypes.h

Issue 18095003: Replace #include <wtf/foo.h> with #include "wtf/foo.h" in Source/wtf. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/wtf/dtoa/double-conversion.h ('k') | Source/wtf/os-win32/stdint.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // ISO C9x compliant inttypes.h for Microsoft Visual Studio 1 // ISO C9x compliant inttypes.h for Microsoft Visual Studio
2 // Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124 2 // Based on ISO/IEC 9899:TC2 Committee draft (May 6, 2005) WG14/N1124
3 // 3 //
4 // Copyright (c) 2006 Alexander Chemeris 4 // Copyright (c) 2006 Alexander Chemeris
5 // 5 //
6 // Redistribution and use in source and binary forms, with or without 6 // Redistribution and use in source and binary forms, with or without
7 // modification, are permitted provided that the following conditions are met: 7 // modification, are permitted provided that the following conditions are met:
8 // 8 //
9 // 1. Redistributions of source code must retain the above copyright notice, 9 // 1. Redistributions of source code must retain the above copyright notice,
10 // this list of conditions and the following disclaimer. 10 // this list of conditions and the following disclaimer.
(...skipping 14 matching lines...) Expand all
25 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 25 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 26 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 27 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 // 29 //
30 /////////////////////////////////////////////////////////////////////////////// 30 ///////////////////////////////////////////////////////////////////////////////
31 31
32 #ifndef INTTYPES_WIN32_H 32 #ifndef INTTYPES_WIN32_H
33 #define INTTYPES_WIN32_H 33 #define INTTYPES_WIN32_H
34 34
35 #include <wtf/Platform.h> 35 #include "wtf/Platform.h"
36 36
37 #if !COMPILER(MSVC) 37 #if !COMPILER(MSVC)
38 #error "This inttypes.h file should only be compiled with MSVC" 38 #error "This inttypes.h file should only be compiled with MSVC"
39 #endif 39 #endif
40 40
41 #if _MSC_VER > 1000 41 #if _MSC_VER > 1000
42 #pragma once 42 #pragma once
43 #endif 43 #endif
44 44
45 #include "stdint.h" 45 #include "stdint.h"
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 #else 252 #else
253 # define SCNoPTR "lo" 253 # define SCNoPTR "lo"
254 # define SCNuPTR "lu" 254 # define SCNuPTR "lu"
255 # define SCNxPTR "lx" 255 # define SCNxPTR "lx"
256 # define SCNXPTR "lX" 256 # define SCNXPTR "lX"
257 #endif 257 #endif
258 258
259 #endif 259 #endif
260 260
261 #endif 261 #endif
OLDNEW
« no previous file with comments | « Source/wtf/dtoa/double-conversion.h ('k') | Source/wtf/os-win32/stdint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698