Overview
Comment: | Make GCC 4.6 happy again
I have no idea why it did not warn about shadowing socket before, but |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
37e6faa76f422979a119947b05e1c58d |
User & Date: | js on 2020-04-26 10:06:05 |
Other Links: | manifest | tags |
Context
2020-04-26
| ||
10:42 | Add -[OFProcess waitForTermination] check-in: bdf82f10b4 user: js tags: trunk | |
10:06 | Make GCC 4.6 happy again check-in: 37e6faa76f user: js tags: trunk | |
09:37 | .travis.yml: Configure IPX on precise to run tests check-in: fdef4054ff user: js tags: trunk | |
Changes
Modified src/exceptions/OFBindFailedException.m from [47b287ba77] to [66d49adee0].
︙ | ︙ | |||
27 28 29 30 31 32 33 | + (instancetype)exception { OF_UNRECOGNIZED_SELECTOR } + (instancetype)exceptionWithHost: (OFString *)host port: (uint16_t)port | | | | | | | | | | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | + (instancetype)exception { OF_UNRECOGNIZED_SELECTOR } + (instancetype)exceptionWithHost: (OFString *)host port: (uint16_t)port socket: (id)sock errNo: (int)errNo { return [[[self alloc] initWithHost: host port: port socket: sock errNo: errNo] autorelease]; } + (instancetype)exceptionWithPort: (uint16_t)port packetType: (uint8_t)packetType socket: (id)sock errNo: (int)errNo { return [[[self alloc] initWithPort: port packetType: packetType socket: sock errNo: errNo] autorelease]; } - (instancetype)init { OF_INVALID_INIT_METHOD } - (instancetype)initWithHost: (OFString *)host port: (uint16_t)port socket: (id)sock errNo: (int)errNo { self = [super init]; @try { _host = [host copy]; _port = port; _socket = [sock retain]; _errNo = errNo; } @catch (id e) { [self release]; @throw e; } return self; } - (instancetype)initWithPort: (uint16_t)port packetType: (uint8_t)packetType socket: (id)sock errNo: (int)errNo { self = [super init]; @try { _port = port; _packetType = packetType; _socket = [sock retain]; _errNo = errNo; } @catch (id e) { [self release]; @throw e; } return self; |
︙ | ︙ |