Line 58 of (63 in devel branch) mg_proto/lib/utils/initialize.cpp in master branch `if (std::string(argv[i]).compare("-geom") == 0 ) {` need to be replaced by `if (std::string((*argv)[i]).compare("-geom") == 0 ) {`
Line 58 of (63 in devel branch)
mg_proto/lib/utils/initialize.cpp in master branch
if (std::string(argv[i]).compare("-geom") == 0 ) {need to be replaced by
if (std::string((*argv)[i]).compare("-geom") == 0 ) {