| 97 | // currently registered EventCollector. |
| 98 | class ScopedRegion { |
| 99 | ScopedRegion(ScopedRegion&) = delete; // Not copy-constructible. |
| 100 | ScopedRegion& operator=(ScopedRegion&) = delete; // Not assignable. |
| 101 | |
| 102 | public: |
nothing calls this directly
no test coverage detected