vnl_block.cxx
Go to the documentation of this file.
1 // This is core/vnl/vnl_block.cxx
2 //:
3 // \file
4 // \author fsm
5 
6 #include <iostream>
7 #include <cassert>
8 
9 void vnl_block_raise_exception(char const *FILE, int LINE, char const *why)
10 {
11  std::cerr << FILE << ":" << LINE << ": " << why << std::endl;
12  assert(!"raise_exeption() called");
13  // throw;
14 }
void vnl_block_raise_exception(char const *FILE, int LINE, char const *why)
Definition: vnl_block.cxx:9