| 605 | | // reinterpret_cast should not be used here as it is implementation |
|---|
| 606 | | // defined and the cast through void * is more portable and safe, |
|---|
| 607 | | // although hideous ;( -- cneumann |
|---|
| 608 | | result = static_cast<ContainerPtr>( |
|---|
| 609 | | static_cast<void *>( |
|---|
| 610 | | static_cast<FieldContainerPtr>( |
|---|
| 611 | | static_cast<void *>(pFC))->getAspectPtr( |
|---|
| 612 | | Thread::getCurrentAspect()))); |
|---|
| | 605 | result = |
|---|
| | 606 | reinterpret_cast<ContainerPtr>( |
|---|
| | 607 | reinterpret_cast<FieldContainerPtr>( |
|---|
| | 608 | pFC)->getAspectPtr(Thread::getCurrentAspect())); |
|---|