Commit 82dd2492 by Alan de Oliveira

Conclusão do exercício 7 -- remoção de função não utilizada

parent 00a64462
...@@ -97,16 +97,6 @@ bool operador(char s) { ...@@ -97,16 +97,6 @@ bool operador(char s) {
return false; return false;
} }
bool parenteses(char s) {
vector<char> operadores = {'(',')'};
for(char o: operadores) {
if (o == s)
return true;
}
return false;
}
string polonisar(string expr) { string polonisar(string expr) {
auto stream = stringstream{expr}; auto stream = stringstream{expr};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment