diff options
Diffstat (limited to 'math/or-tools/files/patch-abseil')
-rw-r--r-- | math/or-tools/files/patch-abseil | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/math/or-tools/files/patch-abseil b/math/or-tools/files/patch-abseil deleted file mode 100644 index eccc97345062..000000000000 --- a/math/or-tools/files/patch-abseil +++ /dev/null @@ -1,20 +0,0 @@ ---- ortools/lp_data/lp_parser.cc.orig 2022-11-25 09:21:54 UTC -+++ ortools/lp_data/lp_parser.cc -@@ -185,7 +185,7 @@ bool LPParser::ParseIntegerVariablesList(StringPiece l - - bool LPParser::ParseConstraint(StringPiece constraint) { - const StatusOr<ParsedConstraint> parsed_constraint_or_status = -- ::operations_research::glop::ParseConstraint(constraint.as_string()); -+ ::operations_research::glop::ParseConstraint(std::string(constraint)); - if (!parsed_constraint_or_status.ok()) return false; - const ParsedConstraint& parsed_constraint = - parsed_constraint_or_status.value(); -@@ -414,7 +414,7 @@ StatusOr<ParsedConstraint> ParseConstraint(absl::strin - if (ConsumeToken(&constraint, &consumed_name, &consumed_coeff) != - TokenType::END) { - return absl::InvalidArgumentError(absl::StrCat( -- "End of input was expected, found: ", constraint.as_string())); -+ "End of input was expected, found: ", std::string(constraint))); - } - } - |