Overview
Comment: | Make sure all properties are nonatomic |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
2469a8df496bf6a20684d6b0ed1771f2 |
User & Date: | js on 2017-07-23 12:07:40 |
Other Links: | manifest | tags |
Context
2018-01-21
| ||
22:34 | Update buildsys check-in: 4b47674079 user: js tags: trunk | |
2017-07-23
| ||
12:07 | Make sure all properties are nonatomic check-in: 2469a8df49 user: js tags: trunk | |
11:57 | Change documentation style to ObjFW's style check-in: 764c514b82 user: js tags: trunk | |
Changes
Modified configure.ac from [6a4f3bf3d0] to [a7530af75e].
︙ | |||
20 21 22 23 24 25 26 27 28 29 30 31 32 33 | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | + + | CPP="$OBJCPP" CPPFLAGS="$CPPFLAGS $OBJCPPFLAGS $($OBJFW_CONFIG --cppflags)" OBJCFLAGS="$OBJCFLAGS -Wall $($OBJFW_CONFIG --objcflags)" LDFLAGS="$LDFLAGS $($OBJFW_CONFIG --ldflags)" LIBS="$LIBS $($OBJFW_CONFIG --libs)" AX_CHECK_COMPILER_FLAGS(-Watomic-properties, [OBJCFLAGS="$OBJCFLAGS -Watomic-properties"]) AX_CHECK_COMPILER_FLAGS(-Wdocumentation, [OBJCFLAGS="$OBJCFLAGS -Wdocumentation"]) AC_ARG_ENABLE(shared, AS_HELP_STRING([--disable-shared], [do not build shared library])) AS_IF([test x"$enable_shared" != x"no"], [ BUILDSYS_SHARED_LIB |
︙ |
Modified src/XMPPConnection.h from [0b78eccdeb] to [883bb55bc1].
︙ | |||
215 216 217 218 219 220 221 | 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 | - + - + - + - + - + - + | * The JID the server assigned to the connection after binding. */ @property (readonly, nonatomic) XMPPJID *JID; /*! * The port to connect to. */ |
︙ |
Modified src/XMPPDiscoEntity.h from [3c8c4b2136] to [2ffff60b5d].
︙ | |||
44 45 46 47 48 49 50 | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | - + - + | /*! * @brief The XMPPDiscoNodes this entity provides Services Discovery * responses for * * This usually contains at least all immediate child nodes, but may contain * any number of nodes nested more deeply. */ |
︙ |
Modified src/XMPPMessage.h from [c8a8b87bf3] to [689e64d8e4].
︙ | |||
25 26 27 28 29 30 31 | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | + - - + + + | OF_ASSUME_NONNULL_BEGIN /*! * @brief A class describing a message stanza. */ @interface XMPPMessage: XMPPStanza /*! |
︙ |
Modified src/XMPPRoster.h from [12b50e0f15] to [c49c440cdc].
︙ | |||
68 69 70 71 72 73 74 | 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | - + | id <XMPPStorage> _dataStorage; bool _rosterRequested; } /*! * @brief The connection to which the roster belongs */ |
︙ |
Modified src/XMPPSRVLookup.h from [c9768d0ace] to [72a7f4de73].
︙ | |||
34 35 36 37 38 39 40 | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | - - - - + + + + | uint16_t _priority; uint16_t _weight; uint32_t _accumulatedWeight; uint16_t _port; OFString *_target; } |
︙ |