Or, if you still want the name because it describes what the parameter is about, you could just put the name in a comment.
Rectangle::Rectangle(float len, float wid, bool /* ver */) ...
The last alternative is of course to disable the warning, if you don't agree with the practice of having to do it like this. That might however increase the chances of making mistakes. The good thing about this warning is that it let's you know if you forget to use a parameter, or accidentally use another variable when you meant to use a parameter.
The warning is about the parameters, not the arguments. Which function (the Rectangle constructor or the Shape constructor?) and which parameters is it complaining about?
It is because you don't use the parameters len, wid and ver. Instead you pass the uninitialized members length_, width_, and verbose_ to the Shape constructor.