Ticket #6158: cstdint_patch.diff

File cstdint_patch.diff, 155 bytes (added by ipapadop@…, 11 years ago)

cstdint.hpp patch for Solaris 10.0/gcc 4.6.1

Line 
1103c103,107
2< using ::int8_t;
3---
4> #if defined(sun) || defined(__sun)
5> typedef signed char int8_t;
6> #else
7> using ::int8_t;
8> #endif