Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Larry Price
gmsh
Commits
dacd4832
Commit
dacd4832
authored
20 years ago
by
Christophe Geuzaine
Browse files
Options
Downloads
Patches
Plain Diff
change force_buffer_flush prototype
parent
d5e579f7
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
MathEval/parser.cpp
+1
-1
1 addition, 1 deletion
MathEval/parser.cpp
MathEval/parser.y
+1
-1
1 addition, 1 deletion
MathEval/parser.y
MathEval/scanner.cpp
+2
-2
2 additions, 2 deletions
MathEval/scanner.cpp
MathEval/scanner.l
+1
-1
1 addition, 1 deletion
MathEval/scanner.l
with
5 additions
and
5 deletions
MathEval/parser.cpp
+
1
−
1
View file @
dacd4832
...
...
@@ -58,7 +58,7 @@ int yylex (void);
prematurely (i.e., in case of a parse error) so that the next time
we call the scanner, all is nicely reset. Without this, the
behaviour of the next call after an error is unpredictable. */
int
force_buffer_flush
(
void
);
void
force_buffer_flush
(
void
);
#line 48 "parser.y"
...
...
This diff is collapsed.
Click to expand it.
MathEval/parser.y
+
1
−
1
View file @
dacd4832
...
...
@@ -40,7 +40,7 @@ int yylex (void);
prematurely (i.e., in case of a parse error) so that the next time
we call the scanner, all is nicely reset. Without this, the
behaviour of the next call after an error is unpredictable. */
int
force_buffer_flush(void);
void
force_buffer_flush(void);
%}
...
...
This diff is collapsed.
Click to expand it.
MathEval/scanner.cpp
+
2
−
2
View file @
dacd4832
...
...
@@ -20,7 +20,7 @@
/* A lexical scanner generated by flex */
/* Scanner skeleton version:
* $Header: /cvsroot/gmsh/MathEval/scanner.cpp,v 1.
4
2004-0
5-12 18:57:48
geuzaine Exp $
* $Header: /cvsroot/gmsh/MathEval/scanner.cpp,v 1.
5
2004-0
6-04 18:42:10
geuzaine Exp $
*/
#define FLEX_SCANNER
...
...
@@ -1705,4 +1705,4 @@ static int input_from_string (char *buffer, int max_size)
return
count
;
}
int
force_buffer_flush
()
{
YY_FLUSH_BUFFER
;
}
void
force_buffer_flush
()
{
YY_FLUSH_BUFFER
;
}
This diff is collapsed.
Click to expand it.
MathEval/scanner.l
+
1
−
1
View file @
dacd4832
...
...
@@ -125,4 +125,4 @@ static int input_from_string (char *buffer, int max_size)
return count;
}
int
force_buffer_flush() { YY_FLUSH_BUFFER; }
void
force_buffer_flush() { YY_FLUSH_BUFFER; }
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment