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
Hide 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.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation under the terms of the GNU General Public License is hereby
* granted. No representations are made about the suitability of this software
* documentation under the terms of the GNU General Public License is hereby
* granted. No representations are made about the suitability of this software
* for any purpose. It is provided "as is" without express or implied warranty.
* See the GNU General Public License for more details.
*
...
...
@@ -214,8 +212,8 @@ void err(const char *fmt, ...)
void
printlex
(
int
dbg
,
bool
enter
,
const
char
*
lexName
,
const
char
*
fileName
)
{
char
*
enter_txt
=
"entering"
;
char
*
enter_txt_uc
=
"Entering"
;
c
onst
c
har
*
enter_txt
=
"entering"
;
c
onst
c
har
*
enter_txt_uc
=
"Entering"
;
if
(
!
enter
)
{
...
...
@@ -237,5 +235,4 @@ void printlex(int dbg, bool enter, const char *lexName, const char *fileName)
else
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