Tyler Veness
0e6d67b23b
[upstream_utils] Remove yapf format disable comment ( #4366 )
2022-08-19 23:51:57 -07:00
Tyler Veness
ea6b1d8449
[wpiutil] Remove unused ManagedStatic class ( #4358 )
...
We migrated to magic statics for lazy construction like the following:
```cpp
class Singleton {
static Singleton& GetSingleton() {
static Singleton instance;
return instance;
}
};
```
2022-08-17 18:04:42 -07:00
Tyler Veness
0e0786331a
Update LLVM libraries to 14.0.6 ( #4350 )
...
The main noticeable change is the SmallString conversion operator to std::string is now explicit instead of implicit.
2022-08-15 05:38:15 -07:00
Tyler Veness
5eb44e22a9
Format Python scripts with black (NFC) ( #4325 )
2022-07-01 06:41:44 -07:00
PJ Reiniger
787fe6e7a5
[wpiutil] Separate third party libraries ( #4190 )
2022-06-18 08:08:31 -07:00
PJ Reiniger
3e94805220
[wpiutil] Reduce llvm collections patches ( #4268 )
2022-05-27 13:41:28 -07:00
Tyler Veness
7576136b4a
[upstream_utils] Make update_llvm.py executable ( #4254 )
2022-05-20 17:16:19 -07:00
PJ Reiniger
c3b223ce60
[wpiutil] Vendor llvm and update to 13.0.0 ( #4224 )
2022-05-20 15:59:53 -07:00