Skip to content

Commit

Permalink
Merge pull request #3344 from schveiguy/fixunixddoc
Browse files Browse the repository at this point in the history
fix ddoc issues for UnixAddress
  • Loading branch information
andralex committed May 29, 2015
2 parents 18681de + badd9c3 commit 7e0bef9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion std/socket.d
Original file line number Diff line number Diff line change
Expand Up @@ -1908,14 +1908,16 @@ version(StdDdoc)
/// Construct a new $(D UnixAddress) from the specified path.
this(in char[] path) { }

this() pure nothrow @nogc { }

/// Get the underlying _path.
@property string path() const { return null; }

/// ditto
override string toString() const { return null; }

override @property sockaddr* name() { return null; }
override @property const(sockaddr)* name() const { return 0; }
override @property const(sockaddr)* name() const { return null; }
override @property socklen_t nameLen() const { return 0; }
}
}
Expand Down

0 comments on commit 7e0bef9

Please sign in to comment.