Skip to content

Commit

Permalink
add @safe pure nothrow
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinNowak committed Dec 14, 2013
1 parent f1261a2 commit 5abd7d2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion std/zip.d
Expand Up @@ -96,7 +96,8 @@ class ArchiveMember

/// OS specific file attributes
deprecated("Please use fileAttributes instead.")
@property ref inout(uint) externalAttributes() inout { return _externalAttributes; }
@property ref inout(uint) externalAttributes() inout @safe pure nothrow
{ return _externalAttributes; }

/// Read Only: size of data of member in compressed form.
@property uint compressedSize() { return _compressedSize; }
Expand Down

0 comments on commit 5abd7d2

Please sign in to comment.