[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;
  }
};
```
This commit is contained in:
Tyler Veness
2022-08-17 18:04:42 -07:00
committed by GitHub
parent ac9be78e27
commit ea6b1d8449
4 changed files with 0 additions and 261 deletions

View File

@@ -60,7 +60,6 @@ def run_global_replacements(wpiutil_llvm_files):
# Replace llvm_unreachable() with wpi_unreachable()
content = content.replace("llvm_unreachable", "wpi_unreachable")
content = content.replace("llvm_shutdown", "wpi_shutdown")
content = content.replace("llvm_is_multithreaded()", "1")