From 4783c016fa47d58bd93df1b5e57e4f08590cc07f Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Sun, 9 Oct 2005 21:21:51 +0000 Subject: [PATCH] Elimina variable no usada. --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.43.0