X-Git-Url: http://biod.pnpi.spb.ru/gitweb/?a=blobdiff_plain;f=src%2Fgromacs%2Fgmxana%2Fnrama.cpp;fp=src%2Fgromacs%2Fgmxana%2Fnrama.cpp;h=cc1cf7b0625432d3b12b585e6eb5e999150bdee7;hb=c3f2d46e4047f0c465f7234b3784a2fa6f02a065;hp=04bfb5ba9a06d72dfd8e773a16f42c7840108f14;hpb=0595b4a4c763a0bc574658992081abf8b0abc3fe;p=alexxy%2Fgromacs.git diff --git a/src/gromacs/gmxana/nrama.cpp b/src/gromacs/gmxana/nrama.cpp index 04bfb5ba9a..cc1cf7b062 100644 --- a/src/gromacs/gmxana/nrama.cpp +++ b/src/gromacs/gmxana/nrama.cpp @@ -39,6 +39,7 @@ #include "nrama.h" #include +#include #include "gromacs/listed-forces/bonded.h" #include "gromacs/pbcutil/rmpbc.h" @@ -112,7 +113,7 @@ static int find_atom(const char *find, char ***names, int start, int nr) for (i = start; (i < nr); i++) { - if (strcmp(find, *names[i]) == 0) + if (std::strcmp(find, *names[i]) == 0) { return i; }