Files
allwpilib/wpiutil
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
..
2022-02-26 09:49:34 -08:00
2022-06-24 19:35:13 -07:00