| 654 | |
| 655 | template <typename T> |
| 656 | void ConstExprTestT() |
| 657 | { |
| 658 | ConstTestT<T>(); |
| 659 | ComparisonTestT<T>(); |
| 660 | ConstCastTestT<T>(); |
| 661 | |
| 662 | #if CPLUSPLUS_STD == CPLUSPLUS_14 |
| 663 | StaticAssertTest<T>(); |
| 664 | TestSignedOnly(); |
| 665 | |
| 666 | ConstAddT<T>(); |
| 667 | ConstSubtractT<T>(); |
| 668 | ConstMultiplyT<T>(); |
| 669 | #endif |
| 670 | } |
| 671 | |
| 672 | void ConstExprTest() |
| 673 | { |
nothing calls this directly
no test coverage detected