-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/double quotes #71
Conversation
There should a corresponding set of change to the manual such that, in each instance that specifies a single quote delimited string is required. to state double quote and asterisk delimited strings are permissible. |
@@ -0,0 +1,8 @@ | |||
bool isQuote( char c ){ | |||
if ( ( c == '\'' ) or ( c == '*' ) or ( c == '"' ) ){ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
stares suspiciously at asterisk
Could you link to a successful build on EC2? |
I thought it was building just find on Jenkins, but now it looks like it was just building the |
Here is a successful build as reported by Jenkins for @apmccartney |
I added the capability to use double quotes in addition to single quotes to delimit strings.