Files
allwpilib/wpiutil/.styleguide
Tyler Veness fbdc810887 Upgrade to C++20 (#4239)
* Use explicit this capture required by C++20
* Use C++20 span
* Replace wpi::numbers with std::numbers
* Fix C++20 clang-tidy warning false positive in fmt
* Remove ciso646 include since C++20 removed that header
* Fix global-buffer-overflow asan warnings in ntcore tests
* Add DIOSetProxy constructor to HAL

* Upgrade MSVC compiler to 2022
* Bump native-utils to 2023.2.7 (changes to std=c++20)

Co-authored-by: Peter Johnson <johnson.peter@gmail.com>
2022-10-15 16:33:14 -07:00

47 lines
821 B
Plaintext

cppHeaderFileInclude {
\.h$
\.hpp$
\.inc$
\.inl$
math$
numbers$
scope$
}
cppSrcFileInclude {
\.cpp$
}
modifiableFileExclude {
src/main/native/include/wpi/MulticastServiceAnnouncer\.h$
}
generatedFileExclude {
src/main/native/thirdparty/
src/main/native/include/wpi/fs\.h$
src/main/native/cpp/fs\.cpp$
src/main/native/resources/
src/main/native/windows/StackWalker
src/test/native/cpp/llvm/
src/test/native/cpp/span/
src/test/native/cpp/json/
}
licenseUpdateExclude {
src/main/native/cpp/Base64\.cpp$
src/main/native/cpp/sha1\.cpp$
src/main/native/include/wpi/ConcurrentQueue\.h$
src/main/native/include/wpi/sha1\.h$
}
repoRootNameOverride {
wpiutil
}
includeGuardRoots {
wpiutil/src/main/native/cpp/
wpiutil/src/main/native/include/
wpiutil/src/test/native/cpp/
}