#include #include #include #include std::string nodiff(std::string text) { std::vector lines; boost::split(lines, text, boost::is_any_of("\n")); using namespace testing::internal; return (edit_distance::CreateUnifiedDiff(lines, lines)); } int main() { return 0; }