diff --git a/src/lpmln2wc_src/lpmln2wc.cpp b/src/lpmln2wc_src/lpmln2wc.cpp index 982673a..b4076e3 100644 --- a/src/lpmln2wc_src/lpmln2wc.cpp +++ b/src/lpmln2wc_src/lpmln2wc.cpp @@ -50,8 +50,8 @@ set findVariables(const string& head){ if( (int)head.at(i) >= 65 && // A (int)head.at(i) <= 90 && // Z ( (int)head.at(i-1) == 44 || //comma - (int) head.at(i-1) == 40) || // opening paren - (int) head.at(i-1) == 32 ) { //space + (int) head.at(i-1) == 40 || // opening paren + (int) head.at(i-1) == 32 )) { //space while(true){