mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-22 12:04:39 +02:00
8080775: Better argument formatting for assert() and friends
Reviewed-by: kbarrett, pliden
This commit is contained in:
parent
aa0818a98a
commit
1e71f67736
225 changed files with 1342 additions and 1432 deletions
|
@ -269,7 +269,7 @@ class Universe: AllStatic {
|
|||
}
|
||||
|
||||
static Klass* typeArrayKlassObj(BasicType t) {
|
||||
assert((uint)t < T_VOID+1, err_msg("range check for type: %s", type2name(t)));
|
||||
assert((uint)t < T_VOID+1, "range check for type: %s", type2name(t));
|
||||
assert(_typeArrayKlassObjs[t] != NULL, "domain check");
|
||||
return _typeArrayKlassObjs[t];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue