mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
Variable name fixes (#758)
This commit is contained in:
committed by
Peter Johnson
parent
85157a56c3
commit
96de0b5b11
@@ -74,13 +74,13 @@ void DriverStation::ReportWarning(llvm::StringRef error) {
|
||||
*
|
||||
* The error is also printed to the program console.
|
||||
*/
|
||||
void DriverStation::ReportError(bool is_error, int32_t code,
|
||||
void DriverStation::ReportError(bool isError, int32_t code,
|
||||
llvm::StringRef error, llvm::StringRef location,
|
||||
llvm::StringRef stack) {
|
||||
llvm::SmallString<128> errorTemp;
|
||||
llvm::SmallString<128> locationTemp;
|
||||
llvm::SmallString<128> stackTemp;
|
||||
HAL_SendError(is_error, code, 0, error.c_str(errorTemp),
|
||||
HAL_SendError(isError, code, 0, error.c_str(errorTemp),
|
||||
location.c_str(locationTemp), stack.c_str(stackTemp), 1);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user