Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit f75371f9 authored by gsell's avatar gsell
Browse files

cleanup: IPPL_RUNTIME_ERRCHECK related code removed

parent 7f15be7b
No related branches found
No related tags found
1 merge request!232Resolve "cleanup: remove IPPL_RUNTIME_ERRCHECK"
......@@ -1167,33 +1167,3 @@ void IpplInfo::pop() {
ChunkSize = obj.ChunkSize;
PerSMPParallelIO = obj.PerSMPParallelIO;
}
#ifdef IPPL_RUNTIME_ERRCHECK
/////////////////////////////////////////////////////////////////////
// special routine used in runtime debugging error detection
void __C_runtime_error ( int trap_code, char *name, int line_no, ... ) {
switch ( trap_code ) {
/* Subscript range violations: */
case BRK_RANGE:
fprintf ( stderr, "error: Subscript range violation" );
break;
/* Others (unknown trap codes): */
default:
fprintf ( stderr, "error: Trap %d ", trap_code );
break;
}
fprintf ( stderr, " in '%s'", name);
if ( line_no != -1 )
fprintf ( stderr, " (line %d)", line_no );
exit (99);
}
#endif
/***************************************************************************
* $RCSfile: IpplInfo.cpp,v $ $Author: adelmann $
* $Revision: 1.1.1.1 $ $Date: 2003/01/23 07:40:33 $
* IPPL_VERSION_ID: $Id: IpplInfo.cpp,v 1.1.1.1 2003/01/23 07:40:33 adelmann Exp $
***************************************************************************/
......@@ -67,14 +67,6 @@ class IpplInfo;
std::ostream& operator<<(std::ostream&, const IpplInfo&);
#ifdef IPPL_RUNTIME_ERRCHECK
// special routine used in runtime debugging error detection
extern "C" {
void __C_runtime_error (int trap_code, char *name, int line_no, ...);
};
#endif
class IpplInfo {
public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment