ObjFW  Check-in [4a5d37fc3b]

Overview
Comment:generators/unicode: Fix two inverted lines
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 4a5d37fc3bb87531624973176a9592120f3e8a05e842653f1cf132feabfb11ac
User & Date: js on 2022-06-05 12:34:19
Other Links: manifest | tags
Context
2022-06-06
07:06
Always implement dummy for OF_UNAVAILABLE methods check-in: e53c0160a8 user: js tags: trunk
2022-06-05
12:34
generators/unicode: Fix two inverted lines check-in: 4a5d37fc3b user: js tags: trunk
10:43
OFHTTPResponse: Make "string" a method check-in: 16d3902e6d user: js tags: trunk
Changes

Modified generators/unicode/TableGenerator.m from [f2c27273a6] to [442fb49647].

51
52
53
54
55
56
57
58
59

60
61
62
63
64
65
66
		_uppercaseTableSize           = SIZE_MAX;
		_lowercaseTableSize           = SIZE_MAX;
		_titlecaseTableSize           = SIZE_MAX;
		_caseFoldingTableSize         = SIZE_MAX;
		_decompositionTableSize       = SIZE_MAX;
		_decompositionCompatTableSize = SIZE_MAX;
	} @catch (id e) {
		@throw e;
		[self release];

	}

	return self;
}

- (void)applicationDidFinishLaunching
{







<

>







51
52
53
54
55
56
57

58
59
60
61
62
63
64
65
66
		_uppercaseTableSize           = SIZE_MAX;
		_lowercaseTableSize           = SIZE_MAX;
		_titlecaseTableSize           = SIZE_MAX;
		_caseFoldingTableSize         = SIZE_MAX;
		_decompositionTableSize       = SIZE_MAX;
		_decompositionCompatTableSize = SIZE_MAX;
	} @catch (id e) {

		[self release];
		@throw e;
	}

	return self;
}

- (void)applicationDidFinishLaunching
{