Fix FileDescriptor::pipe.

This commit is contained in:
Victor Zverovich
2014-05-03 10:25:46 -07:00
parent 8214a5ef5e
commit e648d289bb
2 changed files with 16 additions and 8 deletions
+1 -1
View File
@@ -204,7 +204,7 @@ class FileDescriptor {
// Creates a pipe setting up read and write file descriptors for reading
// and writing respecively. Throws fmt::SystemError on error.
static void pipe(FileDescriptor &read, FileDescriptor &write);
static void pipe(FileDescriptor &read_fd, FileDescriptor &write_fd);
};
#if !FMT_USE_RVALUE_REFERENCES