ObjFW  Check-in [f7a80d7d63]

Overview
Comment:configure.ac: Avoid a rare warning

On some systems, Clang emits a warning that getters should not be used
for their side effects. However, this is only on systems on which
properties are broken anyway. But it does not hurt to fix this.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: f7a80d7d6375b52bd668f3cd24b187d390810ab0f453abcb42e72d3c844054b2
User & Date: js on 2015-11-04 20:43:17
Other Links: manifest | tags
Context
2015-11-05
23:35
Add lookup-asm-sparc64-elf.S check-in: a3075d81d4 user: js tags: trunk
2015-11-04
20:43
configure.ac: Avoid a rare warning check-in: f7a80d7d63 user: js tags: trunk
2015-11-02
21:49
Add +[OFSystemInfo supportsAltiVec] check-in: 2ba8ec1bf1 user: js tags: trunk
Changes

Modified configure.ac from [3e1a1d120c] to [9328b3ea2a].

141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
	}

	@property (retain, nonatomic) id bar;
	@end
], [
	Foo *foo = (id)0;
	[foo setBar: (id)0];
	[foo bar];
], [
	AC_SUBST(PROPERTIESTESTS_M, "PropertiesTests.m")
	AC_MSG_RESULT(yes)
], [
	AC_MSG_RESULT(no)
])








|







141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
	}

	@property (retain, nonatomic) id bar;
	@end
], [
	Foo *foo = (id)0;
	[foo setBar: (id)0];
	foo = [foo bar];
], [
	AC_SUBST(PROPERTIESTESTS_M, "PropertiesTests.m")
	AC_MSG_RESULT(yes)
], [
	AC_MSG_RESULT(no)
])