| 7 | namespace das { |
| 8 | |
| 9 | void DataWalker::error ( const char * message ) { |
| 10 | if ( context ) { |
| 11 | context->throw_error(message); |
| 12 | } |
| 13 | _cancel = true; |
| 14 | } |
| 15 | |
| 16 | void DataWalker::walk ( vec4f x, TypeInfo * info ) { |
| 17 | if ( info->flags & TypeInfo::flag_refType ) { |
nothing calls this directly
no test coverage detected