mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-10 13:01:18 +00:00

We were getting memory leaks (as told by the CRT detectors, which I also added), and there's really no reason (as long as we're careful) to use pointers there.
7 lines
98 B
C++
7 lines
98 B
C++
#include <string>
|
|
|
|
namespace Test {
|
|
void RunAll();
|
|
bool Inout(const std::string& file);
|
|
}
|