File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
- /* auto-generated on 2025-02-25 13:08:18 -0500. Do not edit! */
1
+ /* auto-generated on 2025-02-26 20:29:12 -0500. Do not edit! */
2
2
/* begin file src/ada.cpp */
3
3
#include "ada.h"
4
4
/* begin file src/checkers.cpp */
Original file line number Diff line number Diff line change 1
- /* auto-generated on 2025-02-25 13:08:18 -0500. Do not edit! */
1
+ /* auto-generated on 2025-02-26 20:29:12 -0500. Do not edit! */
2
2
/* begin file include/ada.h */
3
3
/* *
4
4
* @file ada.h
@@ -9480,7 +9480,8 @@ constructor_string_parser<regex_provider>::is_non_special_pattern_char(
9480
9480
// If token’s value is not value, then return false.
9481
9481
// TODO: Remove this once we make sure get_safe_token returns a non-empty
9482
9482
// string.
9483
- if (!token->value .empty () && token->value [0 ] != value) {
9483
+ if (!token->value .empty () &&
9484
+ static_cast <uint32_t >(token->value [0 ]) != value) {
9484
9485
return false ;
9485
9486
}
9486
9487
@@ -10478,14 +10479,14 @@ constructor_string_parser<regex_provider>::parse(std::string_view input) {
10478
10479
#ifndef ADA_ADA_VERSION_H
10479
10480
#define ADA_ADA_VERSION_H
10480
10481
10481
- #define ADA_VERSION " 3.1.2 "
10482
+ #define ADA_VERSION " 3.1.3 "
10482
10483
10483
10484
namespace ada {
10484
10485
10485
10486
enum {
10486
10487
ADA_VERSION_MAJOR = 3 ,
10487
10488
ADA_VERSION_MINOR = 1 ,
10488
- ADA_VERSION_REVISION = 2 ,
10489
+ ADA_VERSION_REVISION = 3 ,
10489
10490
};
10490
10491
10491
10492
} // namespace ada
You can’t perform that action at this time.
0 commit comments