From: Leandro Lucarella Date: Sun, 9 Oct 2005 21:21:51 +0000 (+0000) Subject: Elimina variable no usada. X-Git-Tag: darcs_import~6 X-Git-Url: https://git.llucax.com/z.facultad/75.29/dale.git/commitdiff_plain/4783c016fa47d58bd93df1b5e57e4f08590cc07f Elimina variable no usada. --- diff --git a/src/main.cpp b/src/main.cpp index f923619..3148ce2 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -43,7 +43,7 @@ void procesar(istream& is, ostream& os) { istringstream iss(linea.c_str()); char operador; - string str_op1, str_operador, str_op2; + string str_op1, str_op2; iss >> str_op1 >> operador >> str_op2; number<> op1 = str_op1; number<> op2 = str_op2;