| 60 | }; |
| 61 | |
| 62 | struct CcI2SStrctNoexcept { |
| 63 | std::string operator()(const std::string& str, int x) noexcept |
| 64 | { |
| 65 | return CcI2SFreeNoexcept(str, x); |
| 66 | } |
| 67 | std::string nonCMemF(const std::string& str, int x) noexcept |
| 68 | { |
| 69 | return CcI2SFreeNoexcept(str, x); |
| 70 | } |
| 71 | std::string cnstMemF(const std::string& str, int x) const noexcept |
| 72 | { |
| 73 | return CcI2SFreeNoexcept(str, x); |
| 74 | } |
| 75 | static std::string sttcMemF(const std::string& str, int x) noexcept |
| 76 | { |
| 77 | return CcI2SFreeNoexcept(str, x); |
| 78 | } |
| 79 | }; |
| 80 | |
| 81 | TEST_CASE("function_traits_test - static_asserts") |
| 82 | { |
nothing calls this directly
no outgoing calls
no test coverage detected