"src/sequence.cpp" did not exist on "146122f4559a220a07987dbdd046452f66f6d200"
Commit 1507fcd3 authored by Jesse Beder's avatar Jesse Beder
Browse files

Forgot to add mark.h

parent b1ce0425
#pragma once
namespace YAML
{
struct Mark {
Mark(): pos(0), line(0), column(0) {}
static const Mark null() { return Mark(-1, -1, -1); }
int pos;
int line, column;
private:
Mark(int pos_, int line_, int column_): pos(pos_), line(line_), column(column_) {}
};
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment