summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Estes <westes575@gmail.com>2015-12-11 09:45:14 -0500
committerManoj Srivastava <srivasta@debian.org>2016-02-05 13:29:13 -0800
commit86ca4f322bbec8f52a76c1bf2a879bf464d9bb65 (patch)
treeb226647d9522c65ab43761b9e4bd83685ad26734
parenta646b6cd438dc4bd957c6c6afd89b5e8e59468fe (diff)
Commented in C style in skeleton; fixed sf#195
-rw-r--r--src/flex.skl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flex.skl b/src/flex.skl
index 73a0b9e..de2e758 100644
--- a/src/flex.skl
+++ b/src/flex.skl
@@ -2350,7 +2350,7 @@ void yyFlexLexer::yyensure_buffer_stack(void)
* scanner will even need a stack. We use 2 instead of 1 to avoid an
* immediate realloc on the next call.
*/
- num_to_alloc = 1; // After all that talk, this was set to 1 anyways...
+ num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */
YY_G(yy_buffer_stack) = (struct yy_buffer_state**)yyalloc
(num_to_alloc * sizeof(struct yy_buffer_state*)
M4_YY_CALL_LAST_ARG);