| 3058 | } |
| 3059 | |
| 3060 | ExeName::ExeName() : |
| 3061 | m_name(std::make_shared<std::string>("<executable>")) {} |
| 3062 | |
| 3063 | ExeName::ExeName(std::string& ref) : ExeName() { |
| 3064 | m_ref = std::make_shared<Detail::BoundValueRef<std::string>>(ref); |
nothing calls this directly
no outgoing calls
no test coverage detected