Bug #942 » arith.patch
| dcmtk/config/tests/arith.cc 2019-07-26 11:59:10.974799187 +0200 | ||
|---|---|---|
|
// away or emit compile-time errors.
|
||
|
volatile T t0 = 1;
|
||
|
volatile T t1 = 0;
|
||
|
//t0 /= t1;
|
||
|
t0 /= t1;
|
||
|
}
|
||
|
|
||
|
// gathers and prints information for integer types
|
||
| ... | ... | |
|
volatile T t = guess<T>::snan();
|
||
|
// Other compilers will trigger only if we use
|
||
|
// arithmetics.
|
||
|
//++t;
|
||
|
++t;
|
||
|
}
|
||
|
|
||
|
template<typename T>
|
||