SIGN IN SIGN UP

fix part of issue #74 - find_last_of() finds any one character; replace with rfind()

For any string ending with S, the single-quote following the S was ignored. This caused
SCL to read beyond the end of the string and discard all remaining entities in the file.
std::string::find_last_of() finds any one character, rather than a specific sequence.
Replaced with std::string::rfind() for intended behavior.
M
Mark Pictor committed
b2ec929fb01d02ae58ea0fab7527f5d5b89e98f8
Parent: 9c2018e