aboutsummaryrefslogtreecommitdiffhomepage
path: root/parser.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-01-31 17:01:19 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-01-31 17:01:19 -0800
commit4ccc2550d0da858a0ebcbce75f3d63723a401e69 (patch)
tree02d78867bf3775fccc8139ced8e14b4f8338ff8d /parser.cpp
parent0c9e398bef070e2841e275ce871fc1836e104711 (diff)
Squash a bunch of warnings
Diffstat (limited to 'parser.cpp')
-rw-r--r--parser.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/parser.cpp b/parser.cpp
index 59c5f53b..22ce818c 100644
--- a/parser.cpp
+++ b/parser.cpp
@@ -1615,8 +1615,7 @@ int parser_t::parse_job( process_t *p,
job_t *j,
tokenizer *tok )
{
-// array_list_t *args = al_halloc( j ); // The list that will become the argc array for the program
- std::vector<completion_t> args;
+ std::vector<completion_t> args; // The list that will become the argc array for the program
int use_function = 1; // May functions be considered when checking what action this command represents
int use_builtin = 1; // May builtins be considered when checking what action this command represents
int use_command = 1; // May commands be considered when checking what action this command represents