| 9217 | |
| 9218 | template<typename LambdaT> |
| 9219 | static auto makeRef(LambdaT const &lambda) -> std::shared_ptr<BoundValueRefBase> { |
| 9220 | return std::make_shared<BoundLambda<LambdaT>>( lambda) ; |
| 9221 | } |
| 9222 | |
| 9223 | public: |
| 9224 | ExeName() : m_name( std::make_shared<std::string>( "<executable>" ) ) {} |
nothing calls this directly
no outgoing calls
no test coverage detected