何らかの理由で、以下のこのC++はfalseを返し続けます。どんな助けでも認められるでしょう!より多くのソースを含めますが、LibPQにあります
std::string one = "stringa";
std::string two = "stringb";
std::string three = "stringa";
std::string four = "stringb";
if( one.compare( three ) == 0 && two.compare( four ) == 0 ) {
return true;
} else {
return false;
}