]> git.pld-linux.org Git - packages/dss.git/blob - gcc43.patch
add gcc43.patch
[packages/dss.git] / gcc43.patch
1 --- DarwinStreamingSrvr6.0.3-Source/CommonUtilitiesLib/StringFormatter.h~       2008-05-06 02:28:59.000000000 +0300
2 +++ DarwinStreamingSrvr6.0.3-Source/CommonUtilitiesLib/StringFormatter.h        2010-08-09 16:45:23.066298834 +0300
3 @@ -71,8 +71,8 @@
4          //Object does no bounds checking on the buffer. That is your responsibility!
5          //Put truncates to the buffer size
6          void        Put(const SInt32 num);
7 -        void        Put(char* buffer, UInt32 bufferSize);
8 -        void        Put(char* str)      { Put(str, strlen(str)); }
9 +        void        Put(const char* buffer, UInt32 bufferSize);
10 +        void        Put(const char* str)      { Put(str, strlen(str)); }
11          void        Put(const StrPtrLen &str) { Put(str.Ptr, str.Len); }
12          void        PutSpace()          { PutChar(' '); }
13          void        PutEOL()            {  Put(sEOL, sEOLLen); }
This page took 0.060513 seconds and 3 git commands to generate.