| 4292 | } |
| 4293 | |
| 4294 | void Path::addPathInArg(const String & /*path*/, const InArgs &in, InArgs::const_iterator &itInArg, |
| 4295 | PathArgument::Kind kind) |
| 4296 | { |
| 4297 | if (itInArg == in.end()) |
| 4298 | { |
| 4299 | // Error: missing argument %d |
| 4300 | } |
| 4301 | else if ((*itInArg)->kind_ != kind) |
| 4302 | { |
| 4303 | // Error: bad argument type |
| 4304 | } |
| 4305 | else |
| 4306 | { |
| 4307 | args_.push_back(**itInArg++); |
| 4308 | } |
| 4309 | } |
| 4310 | |
| 4311 | void Path::invalidPath(const String & /*path*/, int /*location*/) |
| 4312 | { |