| 15158 | } |
| 15159 | |
| 15160 | XmlFormatting operator & (XmlFormatting lhs, XmlFormatting rhs) { |
| 15161 | return static_cast<XmlFormatting>( |
| 15162 | static_cast<std::underlying_type<XmlFormatting>::type>(lhs) & |
| 15163 | static_cast<std::underlying_type<XmlFormatting>::type>(rhs) |
| 15164 | ); |
| 15165 | } |
| 15166 | |
| 15167 | XmlEncode::XmlEncode( std::string const& str, ForWhat forWhat ) |
| 15168 | : m_str( str ), |
nothing calls this directly
no outgoing calls
no test coverage detected