------------------------------------------------------------------------------
| 1205 | |
| 1206 | //------------------------------------------------------------------------------ |
| 1207 | void vtkFunctionParser::CopyParseError(int& position, char** error) |
| 1208 | { |
| 1209 | if (!error) |
| 1210 | { |
| 1211 | return; |
| 1212 | } |
| 1213 | |
| 1214 | position = this->ParseErrorPositon; |
| 1215 | *error = this->ParseError; |
| 1216 | } |
| 1217 | |
| 1218 | //------------------------------------------------------------------------------ |
| 1219 | int vtkFunctionParser::BuildInternalFunctionStructure() |