Skip to content

Commit

Permalink
fix build on Raspberry Pi 4 where std::numeric_limits<long long>::dig…
Browse files Browse the repository at this point in the history
…its10 == 33, instead of 18 on x86.
  • Loading branch information
chenshuo committed Jul 12, 2021
1 parent 5b465be commit 8303763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion muduo/base/LogStream.h
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ class LogStream : noncopyable

Buffer buffer_;

static const int kMaxNumericSize = 32;
static const int kMaxNumericSize = 48;
};

class Fmt // : noncopyable
Expand Down

0 comments on commit 8303763

Please sign in to comment.