我的pygmo软件有问题

问题描述

我已经通过conda提示符安装了pygmo软件。而在跑步时。出现以下错误。我该如何修复我的安装

class Event {};

class Context {
    Context(int width,int height,void(*eventCallback)(Event&)) {}
};

class App {

    App(int w,int h): context{w,h,onEventInternal } {} // Error here! 

    static void onEventInternal(Event& event) {
        //event handling
    }
    
private:
    const Context& context;
};

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)