| 100 | public: |
| 101 | |
| 102 | ~GlobalCleanup() |
| 103 | { |
| 104 | faker::GlobalCriticalSection *gcs = |
| 105 | faker::GlobalCriticalSection::getInstance(false); |
| 106 | if(gcs) gcs->lock(false); |
| 107 | fconfig_deleteinstance(gcs); |
| 108 | deadYet = true; |
| 109 | if(gcs) gcs->unlock(false); |
| 110 | } |
| 111 | }; |
| 112 | GlobalCleanup globalCleanup; |
| 113 |
nothing calls this directly
no test coverage detected