| 41 | std::string (*CcI2SFunctionPointerNoexcept)(const std::string&, int) noexcept = &CcI2SFreeNoexcept; |
| 42 | |
| 43 | struct CcI2SStrct { |
| 44 | std::string operator()(const std::string& str, int x) |
| 45 | { |
| 46 | return CcI2SFree(str, x); |
| 47 | } |
| 48 | std::string nonCMemF(const std::string& str, int x) |
| 49 | { |
| 50 | return CcI2SFree(str, x); |
| 51 | } |
| 52 | std::string cnstMemF(const std::string& str, int x) const |
| 53 | { |
| 54 | return CcI2SFree(str, x); |
| 55 | } |
| 56 | static std::string sttcMemF(const std::string& str, int x) |
| 57 | { |
| 58 | return CcI2SFree(str, x); |
| 59 | } |
| 60 | }; |
| 61 | |
| 62 | struct CcI2SStrctNoexcept { |
| 63 | std::string operator()(const std::string& str, int x) noexcept |
nothing calls this directly
no outgoing calls
no test coverage detected