mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-01 02:41:48 +00:00
Fixed unused variable warning from gcc. (#159)
This makes it so that ntcore builds with -Wextra -Werror
This commit is contained in:
committed by
Peter Johnson
parent
bc06c843c7
commit
e7c4150c02
@@ -845,12 +845,11 @@ raw_null_ostream::~raw_null_ostream() {
|
||||
#endif
|
||||
}
|
||||
|
||||
void raw_null_ostream::write_impl(const char *Ptr, size_t Size) {
|
||||
}
|
||||
void raw_null_ostream::write_impl(const char * /*Ptr*/, size_t /*Size*/) {}
|
||||
|
||||
uint64_t raw_null_ostream::current_pos() const {
|
||||
return 0;
|
||||
}
|
||||
|
||||
void raw_null_ostream::pwrite_impl(const char *Ptr, size_t Size,
|
||||
uint64_t Offset) {}
|
||||
void raw_null_ostream::pwrite_impl(const char * /*Ptr*/, size_t /*Size*/,
|
||||
uint64_t /*Offset*/) {}
|
||||
|
||||
Reference in New Issue
Block a user