Skip to content
Snippets Groups Projects
Commit db815b79 authored by Yusuke Nojima's avatar Yusuke Nojima Committed by Android (Google) Code Review
Browse files

Merge "Fix a dangerous macro."

parents 6ec961de 63095937
No related branches found
No related tags found
No related merge requests found
......@@ -131,7 +131,7 @@ static void dumpWord(const unsigned short* word, const int length) {
#endif // FLAG_DBG
#ifndef U_SHORT_MAX
#define U_SHORT_MAX 1 << 16
#define U_SHORT_MAX 65535 // ((1 << 16) - 1)
#endif
#ifndef S_INT_MAX
#define S_INT_MAX 2147483647 // ((1 << 31) - 1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment