pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2016-12-08
2016-12-08 11:06:48 by Henrik Grubbström (Grubba) <grubba@grubba.org>
aacfa5fc27a60c44f212e34b513f0f5aa1d4bbbd (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
8.0
Testsuite: Fix warning caused by ::`->() now returning void.
4195:
class A(array foo) { int counter;
-
mixed
`->=(string sym, mixed v) {
+
void
`->=(string sym, mixed v) {
counter += !!v;
-
return
::`->=(sym, v);
+
::`->=(sym, v);
} };