filox / StormCpp

A small C++ wrapper for Storm
31 stars 9 forks source link

SplitSentenceTest emitting empty strings #5

Open rbx opened 11 years ago

rbx commented 11 years ago

Hi, I followed the example and the sentence splitter was emitting empty strings.

The issue was solved for me by changing line 72 of SplitSentence.h from: std::string s = tuple.GetValues()[2].asString(); to std::string s = tuple.GetValues()[0].asString();