-
Notifications
You must be signed in to change notification settings - Fork 34
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
What is the actual spec on comments? Not what it says... #60
Comments
Under some older software, it would indeed signify a comment. |
And what does
|
so, again, the multi-line comment (shown above) would not be a comment, according to the published spec, here. Yet I suspect that since sforzando actually will output this that the spec is incorrect? Not trying to be difficult here - just trying to make a player that will work right. But, lacking an answer I've implemented multi line comments according to the c++ spec. |
In the player I am making, I prefer respect the spec for backward compatibility. So when a
This is strange. I don't understand why those player doesn't not respect '/' style comment ? |
|
Sorry for the bad formatting
/ or \ separator works for players running on Windows. Not sure that |
About line comments, looking in the test suite and in the original documentation, despite the statement, 2 forward slashes was used.
Also sfz 2 (Cakewalk Synthesizers 2nd edition, p334), including the 2 forward slashes for single lines. |
the spec says when you hit
/
a comment begins, and lasts until the end of the line.So what does
sample=foo/bar.wav
mean? clearly/
does not always start a comment.Now look at this!
Apparently Sforzando thinks multi line comments like C++ are a thing. Do Either multi-line comments are a thing, or else
*/
on a line by itself means "ignore:.The text was updated successfully, but these errors were encountered: