mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2025-10-01 17:29:07 +08:00
Casting and documentation fixes (#608)
Add `-wDocumentation` option. Fix the documentation. Fix c++20/c++17 confusion in tests. Co-authored-by: ArthurSonzogni <sonzogniarthur@gmail.com>
This commit is contained in:
@@ -51,7 +51,7 @@ unsigned char TerminalInputParser::Current() {
|
||||
|
||||
bool TerminalInputParser::Eat() {
|
||||
position_++;
|
||||
return position_ < (int)pending_.size();
|
||||
return position_ < static_cast<int>(pending_.size());
|
||||
}
|
||||
|
||||
void TerminalInputParser::Send(TerminalInputParser::Output output) {
|
||||
|
Reference in New Issue
Block a user