diff options
author | Antoine Brodin <antoine@FreeBSD.org> | 2021-01-01 10:11:34 +0000 |
---|---|---|
committer | Antoine Brodin <antoine@FreeBSD.org> | 2021-01-01 10:11:34 +0000 |
commit | 26b4c8f71f91d22e081b27814782686edde0c90a (patch) | |
tree | 1c321c39372c25d8634e75b5c8e08edc676b296d /games/pingus/files/patch-src-lisp-getters.hpp | |
parent | New port: math/py-optuna: A hyperparameter optimization framework (diff) |
Revert r559792 to unbreak INDEX and bulk -a
It seems a lot of reverse dependencies were missed
With hat: portmgr
Diffstat (limited to 'games/pingus/files/patch-src-lisp-getters.hpp')
-rw-r--r-- | games/pingus/files/patch-src-lisp-getters.hpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/games/pingus/files/patch-src-lisp-getters.hpp b/games/pingus/files/patch-src-lisp-getters.hpp new file mode 100644 index 000000000000..f600918f5631 --- /dev/null +++ b/games/pingus/files/patch-src-lisp-getters.hpp @@ -0,0 +1,11 @@ +--- src/lisp/getters.hpp.orig 2011-12-24 21:46:47 UTC ++++ src/lisp/getters.hpp +@@ -30,7 +30,7 @@ static inline bool property_get(const Li + if(lisp->get_list_size() != 2) + return false; + +- const Lisp* el = lisp->get_list_elem(1); ++ const Lisp* el = lisp->get_list_elem(1).get(); + return get(el, val); + } + |