SymSpellPlusPlus
SymSpellPlusPlus copied to clipboard
SymSpell C++ Ports
I was trying to build the project from Visual Studio 2019 using platform tool set `v142` and run into an error: ``` Cannot open include file: "windows/port.h" ``` What could...
How to use this package? How to add the dictionary/frequency file like here: https://github.com/wolfgarbe/SymSpell ? Thanks.
Turn on compiler warnings - this function returns a reference to a local variable. Looks like returning by value will do.
Usage example casts string literal to `char*`, which is not a good thing to do (there is a reason we have `const char*` here!). It's needless anyway because `Lookup` takes...
Hi, I try to run WordSegmentation, like this: const char* inputTerm = "whereis th elove hehad dated forImuch of thepast who couqdn'tread in sixtgrade and ins pired him"; auto suggestions...
When running under ASAN I get a complaint that strings allocated by strdup() are being freed by delete[] which is apparently a no-no. I don't know enough about C++ object...
I have built this code using vs 2015 debug x64 mode it worked fine but In release mode when i try i am getting Heap Corrupted error.