Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/dyaml/exception.d
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class YAMLException : Exception
{
/// Construct a YAMLException with specified message and position where it was thrown.
public this(string msg, string file = __FILE__, size_t line = __LINE__)
@safe pure nothrow
@safe pure nothrow @nogc
{
super(msg, file, line);
}
Expand Down
2 changes: 1 addition & 1 deletion source/dyaml/node.d
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class NodeException : MarkedYAMLException
// Params: msg = Error message.
// start = Start position of the node.
this(string msg, Mark start, string file = __FILE__, size_t line = __LINE__)
@safe
@safe pure nothrow
{
super(msg, start, file, line);
}
Expand Down