daddel80 / notepadpp-multireplace

MultiReplace is a plugin for Notepad++ enabling multi-string replacement, allowing list saving and loading. It provides CSV syntax highlighting and enabling precise column targeting. Additionally, it introduces conditional and computational operations within the replacement string.
GNU General Public License v2.0
20 stars 7 forks source link

32-bit build warning as error signed mismatch (again) #21

Closed vinsworldcom closed 1 year ago

vinsworldcom commented 1 year ago

Some new updates have reintroduced an old warning as error again:

notepadpp-multireplace\src\MultiReplace.cpp(2143,23): warning C4018: '<': signed/unsigned mismatch

notepadpp-multireplace\src\MultiReplace.cpp(2143,23): error C2220: the following warning is treated as an error 

Due to line:

    for (int i = 0; i < replaceListData.size(); i++) {

Guessing replaceListData.size() is of size_t.

Cheers.