gilarellano / sash-solutions

Software designed to automate quoting process for windows
https://gilarellano.github.io/sash-solutions/
0 stars 1 forks source link

Fix: ineffiecient use of strcmp #6

Closed Itachi0906 closed 11 months ago

Itachi0906 commented 1 year ago

Directly compared the strings using == operator instead of strcmp For example

-strcmp("DF",windowWood.c_str()) == 0
+"DF"==windowWood.c_str()