Skip to content

Commit

Permalink
Fix Unix build of System.IO.MemoryMappedFiles
Browse files Browse the repository at this point in the history
A method signature had an extra parameter in the stubbed-out Unix file.
  • Loading branch information
stephentoub committed Jan 22, 2015
1 parent 799a95a commit 2fba351
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ private static SafeMemoryMappedFileHandle OpenCore(
/// </summary>
[SecurityCritical]
private static SafeMemoryMappedFileHandle CreateOrOpenCore(
SafeFileHandle fileHandle, String mapName, HandleInheritability inheritability,
MemoryMappedFileAccess access, MemoryMappedFileOptions options, Int64 capacity)
String mapName, HandleInheritability inheritability, MemoryMappedFileAccess access,
MemoryMappedFileOptions options, Int64 capacity)
{
throw NotImplemented.ByDesign; // TODO: Implement this
}
Expand Down

0 comments on commit 2fba351

Please sign in to comment.