部署到 Heroku 时构建失败

时间:2021-01-14 06:37:55

标签: node.js heroku web-deployment package.json node-cron

Heroku 无法安装我构建的包 node-cron 是问题,日志:

class base {

private:
  int priv_var = 90;

public:
  int pub_fun();

} b;

class derived : public base {
} d;

int base::pub_fun() { cout << priv_var << "\n"; }

int main() {
  d.pub_fun();
  return 0;
}

似乎没有任何效果我也安装了 opencolletive 包,目前我的 package.json 包含:

90

0 个答案:

没有答案
相关问题