ObjFW  Check-in [048e3eec4b]

Overview
Comment:Add support for number literals and boxing.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 048e3eec4ba08d7d66db76cc2d49359b259013de118439535a14615204a3001d
User & Date: js on 2012-04-21 10:15:08
Other Links: manifest | tags
Context
2012-04-21
10:30
Use __objc_yes and __objc_no if available. check-in: e571ecccc0 user: js tags: trunk
10:15
Add support for number literals and boxing. check-in: 048e3eec4b user: js tags: trunk
2012-04-20
13:59
Set of_std{in,out,err} in OFFileSingleton. check-in: b7cf59038a user: js tags: trunk
Changes

Modified src/OFNumber.h from [6fa2f56574] to [5d5851287a].

816
817
818
819
820
821
822





 *	  specified number.
 *
 * \param num The number to divide by
 * \return The remainder of a division by the specified number
 */
- (OFNumber*)remainderOfDivisionWithNumber: (OFNumber*)num;
@end












>
>
>
>
>
816
817
818
819
820
821
822
823
824
825
826
827
 *	  specified number.
 *
 * \param num The number to divide by
 * \return The remainder of a division by the specified number
 */
- (OFNumber*)remainderOfDivisionWithNumber: (OFNumber*)num;
@end

#ifndef NSINTEGER_DEFINED
/* Required for number literals to work */
@compatibility_alias NSNumber OFNumber;
#endif

Modified src/OFString.h from [1b7d10d7f5] to [2bed144e84].

854
855
856
857
858
859
860





#import "OFMutableString.h"
#import "OFString+Hashing.h"
#import "OFString+JSONValue.h"
#import "OFString+Serialization.h"
#import "OFString+URLEncoding.h"
#import "OFString+XMLEscaping.h"
#import "OFString+XMLUnescaping.h"












>
>
>
>
>
854
855
856
857
858
859
860
861
862
863
864
865
#import "OFMutableString.h"
#import "OFString+Hashing.h"
#import "OFString+JSONValue.h"
#import "OFString+Serialization.h"
#import "OFString+URLEncoding.h"
#import "OFString+XMLEscaping.h"
#import "OFString+XMLUnescaping.h"

#ifndef NSINTEGER_DEFINED
/* Required for string boxing literals to work */
@compatibility_alias NSString OFString;
#endif