| 97 | |
| 98 | template<class A1> |
| 99 | static void exec(A1& a1) { |
| 100 | // remove all the qualifiers, not sure whether it is necessary |
| 101 | typedef typename boost::remove_cv<A1>::type plainA1; |
| 102 | a1.~plainA1(); |
| 103 | } |
| 104 | }; |
| 105 | |
| 106 | template <> |
no outgoing calls
no test coverage detected