Skip to content

Commit

Permalink
Use plain int type instead of int32_t
Browse files Browse the repository at this point in the history
Change-Id: I8483559e81d86d8fbc54ad5282b8a75002208ca2
Reviewed-on: https://code-review.googlesource.com/c/re2/+/60970
Reviewed-by: Paul Wankadia <[email protected]>
  • Loading branch information
kraj authored and junyer committed Jan 30, 2023
1 parent 8afcf7f commit b025c6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/pcre.h
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ class PCRE {
bool report_errors_; // Silences error logging if false
int match_limit_; // Limit on execution resources
int stack_limit_; // Limit on stack resources (bytes)
mutable int32_t hit_limit_; // Hit limit during execution (bool)
mutable int hit_limit_; // Hit limit during execution (bool)

PCRE(const PCRE&) = delete;
PCRE& operator=(const PCRE&) = delete;
Expand Down

0 comments on commit b025c6a

Please sign in to comment.