mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-05 03:21:42 +00:00
Runs clang-format on ntcore (#150)
Also updates .clang-format to match allwpilib WPIUtil was skipped
This commit is contained in:
committed by
Peter Johnson
parent
cf0ec7b9a9
commit
05ca76ea99
@@ -63,10 +63,8 @@ class WireEncoder {
|
||||
|
||||
/* Writes a 32-bit word. */
|
||||
void Write32(unsigned long val) {
|
||||
m_data.append({(char)((val >> 24) & 0xff),
|
||||
(char)((val >> 16) & 0xff),
|
||||
(char)((val >> 8) & 0xff),
|
||||
(char)(val & 0xff)});
|
||||
m_data.append({(char)((val >> 24) & 0xff), (char)((val >> 16) & 0xff),
|
||||
(char)((val >> 8) & 0xff), (char)(val & 0xff)});
|
||||
}
|
||||
|
||||
/* Writes a double. */
|
||||
|
||||
Reference in New Issue
Block a user