Fix compiler errors under Fedora release candidate 11.
This commit is contained in:
parent
82844a5591
commit
02d162858f
2
Changes
2
Changes
|
|
@ -11,6 +11,8 @@ indicates the contributor was also the author of the fix; Thanks!
|
||||||
|
|
||||||
**** Fix tristates causing "Assigned pin is neither...". [by Lane Brooks]
|
**** Fix tristates causing "Assigned pin is neither...". [by Lane Brooks]
|
||||||
|
|
||||||
|
**** Fix compiler errors under Fedora release candidate 11. [Chitlesh Goorah]
|
||||||
|
|
||||||
* Verilator 3.710 2009/05/19
|
* Verilator 3.710 2009/05/19
|
||||||
|
|
||||||
** Verilator is now licensed under LGPL v3 and/or Artistic v2.0.
|
** Verilator is now licensed under LGPL v3 and/or Artistic v2.0.
|
||||||
|
|
|
||||||
|
|
@ -990,7 +990,7 @@ int V3PreProcImp::getToken() {
|
||||||
string V3PreProcImp::getline() {
|
string V3PreProcImp::getline() {
|
||||||
// Get a single line from the parse stream. Buffer unreturned text until the newline.
|
// Get a single line from the parse stream. Buffer unreturned text until the newline.
|
||||||
if (isEof()) return "";
|
if (isEof()) return "";
|
||||||
char* rtnp;
|
const char* rtnp;
|
||||||
bool gotEof = false;
|
bool gotEof = false;
|
||||||
while (NULL==(rtnp=strchr(m_lineChars.c_str(),'\n')) && !gotEof) {
|
while (NULL==(rtnp=strchr(m_lineChars.c_str(),'\n')) && !gotEof) {
|
||||||
int tok = getToken();
|
int tok = getToken();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue