OLD | NEW |
---|---|
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 11 matching lines...) Expand all Loading... | |
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 #ifndef V8_V8UTILS_H_ | 28 #ifndef V8_V8UTILS_H_ |
29 #define V8_V8UTILS_H_ | 29 #define V8_V8UTILS_H_ |
30 | 30 |
31 #include "utils.h" | 31 #include "utils.h" |
32 #include <stdarg.h> | |
Erik Corry
2010/12/22 09:52:37
We don't like to include system headers after our
ry
2010/12/22 19:36:55
platform.h has stdarg.h - I included that - is tha
| |
32 | 33 |
33 namespace v8 { | 34 namespace v8 { |
34 namespace internal { | 35 namespace internal { |
35 | 36 |
36 // ---------------------------------------------------------------------------- | 37 // ---------------------------------------------------------------------------- |
37 // I/O support. | 38 // I/O support. |
38 | 39 |
39 #if __GNUC__ >= 4 | 40 #if __GNUC__ >= 4 |
40 // On gcc we can ask the compiler to check the types of %d-style format | 41 // On gcc we can ask the compiler to check the types of %d-style format |
41 // specifiers and their associated arguments. TODO(erikcorry) fix this | 42 // specifiers and their associated arguments. TODO(erikcorry) fix this |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
311 } | 312 } |
312 #endif | 313 #endif |
313 while (dest < limit) { | 314 while (dest < limit) { |
314 *dest++ = static_cast<sinkchar>(*src++); | 315 *dest++ = static_cast<sinkchar>(*src++); |
315 } | 316 } |
316 } | 317 } |
317 | 318 |
318 } } // namespace v8::internal | 319 } } // namespace v8::internal |
319 | 320 |
320 #endif // V8_V8UTILS_H_ | 321 #endif // V8_V8UTILS_H_ |
OLD | NEW |