/////////////////////////////////////////////////////////////////////
| 671 | |
| 672 | ////////////////////////////////////////////////////////////////////////// |
| 673 | NodeConvertPtr::NodeConvertPtr(TypeInfo *dstType) |
| 674 | { |
| 675 | assert(dstType); |
| 676 | |
| 677 | typeInfo = dstType; |
| 678 | |
| 679 | first = TakeLastNode(); |
| 680 | |
| 681 | nodeType = typeNodeConvertPtr; |
| 682 | } |
| 683 | NodeConvertPtr::~NodeConvertPtr() |
| 684 | { |
| 685 | } |
nothing calls this directly
no test coverage detected