mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 22:11:26 +12:00
Will be completely wiped, I think, in favor of a Scanner (to tokens), then Parser mechanism.
12 lines
139 B
C++
12 lines
139 B
C++
#include "scalar.h"
|
|
|
|
namespace YAML
|
|
{
|
|
Scalar::Scalar(const std::string& data): m_data(data)
|
|
{
|
|
}
|
|
|
|
Scalar::~Scalar()
|
|
{
|
|
}
|
|
}
|