MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / SafeAddLine

Method SafeAddLine

DebugView++Lib/FileReader.cpp:106–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104}
105
106void FileReader::SafeAddLine(const std::string& line)
107{
108 try
109 {
110 AddLine(line);
111 }
112 catch (std::exception& e)
113 {
114 Add(stringbuilder() << "Error parsing line: " << e.what());
115 }
116}
117
118void FileReader::AddLine(const std::string& line)
119{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected