aboutsummaryrefslogtreecommitdiffhomepage
path: root/proc.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-10-27 13:37:14 -0700
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-10-27 13:37:14 -0700
commit964c7e6f3be262ac4c6b0285edcd4a685fb5bc97 (patch)
treeeab4cd83357714a23ff86bfaff853929359f832d /proc.h
parent630b0515ad494225c8c8532670ffd3d1e2359140 (diff)
parentcf766b55cca979745f6c218d78f9cdcc297b3f20 (diff)
Merge branch 'master' into ast
Conflicts: complete.cpp
Diffstat (limited to 'proc.h')
-rw-r--r--proc.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/proc.h b/proc.h
index aff7983b..a2062d7e 100644
--- a/proc.h
+++ b/proc.h
@@ -373,7 +373,10 @@ public:
unsigned int flags;
/* Returns the block IO redirections associated with the job. These are things like the IO redirections associated with the begin...end statement. */
- const io_chain_t &block_io_chain() const { return this->block_io; }
+ const io_chain_t &block_io_chain() const
+ {
+ return this->block_io;
+ }
/* Fetch all the IO redirections associated with the job */
io_chain_t all_io_redirections() const;