f1shel/Asuna

assert在linux下的编译有问题

f1shel opened this issue · 0 comments

  ~GpuAlloc() {
    assert(m_released == true,
           "every resource which was allocated on GPU should call "
           "deinit() before it was deconstructed!");
  }

to

  ~GpuAlloc() {
    assert((m_released == true,
           "every resource which was allocated on GPU should call deinit() before it was deconstructed!"));
  }