2
0
mirror of https://github.com/boostorg/spirit.git synced 2026-01-19 04:42:11 +00:00
Files
spirit/fusion/test/tie_tests.cpp
Joel de Guzman ae1d48367c Fixed
if (str[0] == 'q' || str[0] == 'Q')
            break;
To

        if (str.empty() || str[0] == 'q' || str[0] == 'Q')
            break;


[SVN r27813]
2005-03-25 05:34:26 +00:00

1.9 KiB