Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
58058025
Commit
58058025
authored
Nov 17, 2013
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed constness warning
parent
e0af5095
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
7 deletions
+4
-7
message.cpp
src/message.cpp
+4
-7
No files found.
src/message.cpp
View file @
58058025
/******************************************************************************
/******************************************************************************
*
*
*
*
* Copyright (C) 1997-2013 by Dimitri van Heesch.
* Copyright (C) 1997-2013 by Dimitri van Heesch.
*
*
...
@@ -214,8 +212,8 @@ void err(const char *fmt, ...)
...
@@ -214,8 +212,8 @@ void err(const char *fmt, ...)
void
printlex
(
int
dbg
,
bool
enter
,
const
char
*
lexName
,
const
char
*
fileName
)
void
printlex
(
int
dbg
,
bool
enter
,
const
char
*
lexName
,
const
char
*
fileName
)
{
{
char
*
enter_txt
=
"entering"
;
c
onst
c
har
*
enter_txt
=
"entering"
;
char
*
enter_txt_uc
=
"Entering"
;
c
onst
c
har
*
enter_txt_uc
=
"Entering"
;
if
(
!
enter
)
if
(
!
enter
)
{
{
...
@@ -237,5 +235,4 @@ void printlex(int dbg, bool enter, const char *lexName, const char *fileName)
...
@@ -237,5 +235,4 @@ void printlex(int dbg, bool enter, const char *lexName, const char *fileName)
else
else
Debug
::
print
(
Debug
::
Lex
,
0
,
"%s lexical analyzer: %s
\n
"
,
enter_txt_uc
,
lexName
);
Debug
::
print
(
Debug
::
Lex
,
0
,
"%s lexical analyzer: %s
\n
"
,
enter_txt_uc
,
lexName
);
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment