| 292 | |
| 293 | template <class Derived, class Container, bool IsMutable> |
| 294 | inline |
| 295 | typename DynamicStruct<Derived, Container, IsMutable>::char_type* |
| 296 | DynamicStruct<Derived, Container, IsMutable>::ptr() { |
| 297 | return const_cast<char_type*>( |
| 298 | static_cast<const DynamicStruct*>(this)->ptr() |
| 299 | ); |
| 300 | } |
| 301 | |
| 302 | template <class Derived, class Container, bool IsMutable> |
| 303 | inline |
no outgoing calls
no test coverage detected