Files
eigen/blas/xerbla.cpp

18 lines
222 B
C++
Raw Permalink Normal View History

#include <iostream>
#ifdef __cplusplus
extern "C"
{
#endif
2010-07-16 22:27:24 +02:00
int xerbla_(const char * msg, int *info, int)
{
std::cerr << "Eigen BLAS ERROR #" << *info << ": " << msg << "\n";
return 0;
}
#ifdef __cplusplus
}
#endif