vnl_block.cxx

来自「InsightToolkit-1.4.0(有大量的优化算法程序)」· CXX 代码 · 共 20 行

CXX
20
字号
// This is vxl/vnl/vnl_block.cxx
#ifdef VCL_NEEDS_PRAGMA_INTERFACE
#pragma implementation
#endif
//:
// \file
// \author fsm

#include "vnl_block.h"

#include <vcl_cassert.h>
#include <vcl_iostream.h>

void vnl_block_raise_exception(char const *FILE, int LINE, char const *why)
{
  vcl_cerr << FILE << ":" << LINE << ": " << why << vcl_endl;
  assert(!"raise_exeption() called");
  // throw;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?