Skip to content

Commit 433ab9c

Browse files
committed
Fix a logging call.
Change-Id: I6c5937b942242819f63b8271c85a6aa41699e12d Reviewed-on: https://code-review.googlesource.com/c/re2/+/63410 Reviewed-by: Alejandro Sedeño <[email protected]> Reviewed-by: Paul Wankadia <[email protected]>
1 parent 99b6b5c commit 433ab9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

re2/re2.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1050,7 +1050,7 @@ bool RE2::Rewrite(std::string* out,
10501050
out->push_back('\\');
10511051
} else {
10521052
if (options_.log_errors())
1053-
ABSL_LOG(ERROR) << "invalid rewrite pattern: " << rewrite.data();
1053+
ABSL_LOG(ERROR) << "invalid rewrite pattern: " << rewrite;
10541054
return false;
10551055
}
10561056
}

0 commit comments

Comments
 (0)