forked from github/verilator
Fix sign compare warning. Closes #2112.
This commit is contained in:
parent
4443ab34fd
commit
b41b9417b9
@ -24,13 +24,14 @@ Lukasz Dalek
|
|||||||
Maarten De Braekeleer
|
Maarten De Braekeleer
|
||||||
Matthew Ballance
|
Matthew Ballance
|
||||||
Mike Popoloski
|
Mike Popoloski
|
||||||
Peter Monsson
|
|
||||||
Patrick Stewart
|
Patrick Stewart
|
||||||
|
Peter Monsson
|
||||||
Philipp Wagner
|
Philipp Wagner
|
||||||
Pieter Kapsenberg
|
Pieter Kapsenberg
|
||||||
Richard Myers
|
Richard Myers
|
||||||
Sebastien Van Cauwenberghe
|
Sebastien Van Cauwenberghe
|
||||||
Stefan Wallentowitz
|
Stefan Wallentowitz
|
||||||
|
Tobias Rosenkranz
|
||||||
Todd Strader
|
Todd Strader
|
||||||
Wilson Snyder
|
Wilson Snyder
|
||||||
Yutetsu TAKATSUKASA
|
Yutetsu TAKATSUKASA
|
||||||
|
@ -619,7 +619,7 @@ void _vl_vsformat(std::string& output, const char* formatp, va_list ap) VL_MT_SA
|
|||||||
bool inPct = false;
|
bool inPct = false;
|
||||||
bool widthSet = false;
|
bool widthSet = false;
|
||||||
bool left = false;
|
bool left = false;
|
||||||
int width = 0;
|
size_t width = 0;
|
||||||
for (const char* pos = formatp; *pos; ++pos) {
|
for (const char* pos = formatp; *pos; ++pos) {
|
||||||
if (!inPct && pos[0]=='%') {
|
if (!inPct && pos[0]=='%') {
|
||||||
pctp = pos;
|
pctp = pos;
|
||||||
|
Loading…
Reference in New Issue
Block a user