We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 149b299 + 809b420 commit d5e227eCopy full SHA for d5e227e
src/time_zone_fixed.cc
@@ -28,7 +28,7 @@ namespace {
28
const char kFixedOffsetPrefix[] = "Fixed/";
29
30
int Parse02d(const char* p) {
31
- const char kDigits[] = "0123456789";
+ static const char kDigits[] = "0123456789";
32
if (const char* ap = std::strchr(kDigits, *p)) {
33
int v = static_cast<int>(ap - kDigits);
34
if (const char* bp = std::strchr(kDigits, *++p)) {
0 commit comments