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.
14 lines
125 B
C++
14 lines
125 B
C++
#include "crt.h"
|
|
#include "content.h"
|
|
|
|
namespace YAML
|
|
{
|
|
Content::Content()
|
|
{
|
|
}
|
|
|
|
Content::~Content()
|
|
{
|
|
}
|
|
}
|