Added doc comment.

This commit is contained in:
Alek Mosingiewicz 2018-05-15 19:32:17 +02:00
parent 322568ba39
commit 0d44b0b456

View File

@ -526,6 +526,7 @@ namespace chaiscript
/// Skips ChaiScript whitespace, which means space and tab, but not cr/lf /// Skips ChaiScript whitespace, which means space and tab, but not cr/lf
/// jespada: Modified SkipWS to skip optionally CR ('\n') and/or LF+CR ("\r\n") /// jespada: Modified SkipWS to skip optionally CR ('\n') and/or LF+CR ("\r\n")
/// AlekMosingiewicz: Added exception when illegal character detected
bool SkipWS(bool skip_cr=false) { bool SkipWS(bool skip_cr=false) {
bool retval = false; bool retval = false;