mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-24 05:41:14 -03:00
rename enum io_mode -> io_mode_t; make io_data_t::io_mode that type
This commit is contained in:
6
io.h
6
io.h
@@ -8,7 +8,7 @@ using std::tr1::shared_ptr;
|
||||
/**
|
||||
Describes what type of IO operation an io_data_t represents
|
||||
*/
|
||||
enum io_mode
|
||||
enum io_mode_t
|
||||
{
|
||||
IO_FILE, IO_PIPE, IO_FD, IO_BUFFER, IO_CLOSE
|
||||
};
|
||||
@@ -26,7 +26,7 @@ class io_data_t
|
||||
|
||||
public:
|
||||
/** Type of redirect */
|
||||
int io_mode;
|
||||
io_mode_t io_mode;
|
||||
/** FD to redirect */
|
||||
int fd;
|
||||
|
||||
@@ -99,7 +99,7 @@ class io_data_t
|
||||
|
||||
io_data_t() :
|
||||
out_buffer(),
|
||||
io_mode(0),
|
||||
io_mode(IO_FILE),
|
||||
fd(0),
|
||||
param1(),
|
||||
param2(),
|
||||
|
||||
Reference in New Issue
Block a user