boost::noncopyable */
| 13 | |
| 14 | /* boost::noncopyable */ |
| 15 | struct noncopyable { |
| 16 | noncopyable() { } |
| 17 | private: |
| 18 | noncopyable(const noncopyable&); |
| 19 | noncopyable& operator =(const noncopyable&); |
| 20 | }; |
| 21 | |
| 22 | }; |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected