ObjFW  Check-in [f835847243]

Overview
Comment:Fix a missing exception argument.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: f8358472434f700840d0bc772701cd6b6dce77fc4c44c9d56d55d3924c22db0f
User & Date: js on 2012-12-16 15:04:39
Other Links: manifest | tags
Context
2012-12-16
15:09
Fix a comment that accidentally was documentation. check-in: 49f58f3edd user: js tags: trunk
15:04
Fix a missing exception argument. check-in: f835847243 user: js tags: trunk
14:57
Add -[stringByAppendingFormat:arguments:]. check-in: aecadefe62 user: js tags: trunk
Changes

Modified src/OFString.m from [221b9ffe16] to [9b74d0387e].

910
911
912
913
914
915
916
917


918
919
920
921
922
923
924
910
911
912
913
914
915
916

917
918
919
920
921
922
923
924
925







-
+
+







		}

		cString[i] = '\0';

		break;
	default:
		@throw [OFNotImplementedException
		    exceptionWithClass: [self class]];
		    exceptionWithClass: [self class]
			      selector: _cmd];
	}

	return cString;
}

- (const char*)UTF8String
{