2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 00:12:11 +00:00

Fix warnings on msvc. Note that the lack of a return shouldn't cause a problem, because we never actually call yypeek in a case where the return is needed, but it's still more future-proof to have it.

This commit is contained in:
Steven Watanabe
2018-02-19 12:28:37 -07:00
parent 8af8dda1e5
commit 0a1ffa1deb

View File

@@ -218,6 +218,7 @@ int yypeek()
ungetc( ch, incp->file );
return ch;
}
return EOF;
}
/*