EHH: add sigFpe::ignore helper class (issue #897)
- convenient way to temporarily suspend the SIGFPE handler. Eg, // Normal code with SIGFPE enabled ... sigFpe::set(); { // Ignore SIGFPE in this scope ... sigFpe::ignore noFpeHandling; ... }
Please register or sign in to comment