Hello Lammps-users,
Just a small thing, the Variable::find(char*) function should take a (const char*) instead. I noticed this when adding the ability to use "v_" variables to a fix that uses a std::string to store the variable name, then calls input->variable->find(varname.c_str()), which currently doesn't work without const_cast.
I don't think the change the find() parameter to const will break anything, since it only calls strcmp().