Merge pull request #147 from Herringway/remove-redundant-visibility
Remove redundant package visibility declarations merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
commit
0309c58c61
|
@ -122,7 +122,6 @@ private struct Pair
|
||||||
/// Value node.
|
/// Value node.
|
||||||
Node value;
|
Node value;
|
||||||
|
|
||||||
public:
|
|
||||||
/// Construct a Pair from two values. Will be converted to Nodes if needed.
|
/// Construct a Pair from two values. Will be converted to Nodes if needed.
|
||||||
this(K, V)(K key, V value)
|
this(K, V)(K key, V value)
|
||||||
{
|
{
|
||||||
|
@ -192,13 +191,11 @@ struct Node
|
||||||
Value.allowed!T;
|
Value.allowed!T;
|
||||||
}
|
}
|
||||||
|
|
||||||
package:
|
|
||||||
// Stored value.
|
// Stored value.
|
||||||
Value value_;
|
Value value_;
|
||||||
// Start position of the node.
|
// Start position of the node.
|
||||||
Mark startMark_;
|
Mark startMark_;
|
||||||
|
|
||||||
package:
|
|
||||||
// Tag of the node.
|
// Tag of the node.
|
||||||
string tag_;
|
string tag_;
|
||||||
// Node scalar style. Used to remember style this node was loaded with.
|
// Node scalar style. Used to remember style this node was loaded with.
|
||||||
|
|
Loading…
Reference in a new issue