Skip to content

Commit

Permalink
Remove use of non-C type.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Rogers committed Jun 6, 2009
1 parent e923bf0 commit 7ef46b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ static void emitCDeclarationsForJavaType(String Cname, RVMClass cls) {
p(" unsigned int * " + name + ";\n");
current = current.plus(addrSize);
} else if (t.isReferenceType()) {
p(" JavaObject_t " + name + ";\n");
p(" Address " + name + ";\n");
current = current.plus(addrSize);
} else {
System.err.println("Unexpected field " + name + " with type " + t);
Expand Down

0 comments on commit 7ef46b5

Please sign in to comment.