Mercurial > fife-parpg
changeset 604:da83338b6913
Fixed incorrect usage of the SWIG %apply directive. This is meant to be used to retrieve output values from arguments only. See http://www.swig.org/Doc1.3/Arguments.html
author | prock@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Mon, 13 Sep 2010 17:22:24 +0000 |
parents | 739d8a43d771 |
children | d242e6ce6f9f |
files | engine/core/view/renderers/instancerenderer.i |
diffstat | 1 files changed, 0 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/engine/core/view/renderers/instancerenderer.i Wed Sep 08 13:47:16 2010 +0000 +++ b/engine/core/view/renderers/instancerenderer.i Mon Sep 13 17:22:24 2010 +0000 @@ -25,8 +25,6 @@ %} namespace FIFE { - %apply const std::list<std::string> &OUTPUT {std::list<std::string> &groups}; - class Location; class RenderBackend; class ImagePool; @@ -49,5 +47,4 @@ private: InstanceRenderer(RenderBackend* renderbackend, int position, ImagePool* imagepool, AnimationPool* animpool); }; - %clear std::list<std::string> &groups; }