логический тип в инт
This commit is contained in:
@@ -777,8 +777,8 @@ public class db_project_info extends DBObject {
|
||||
if (call.funcName.equals(decl1.funcName)) {
|
||||
if (!decl1.own_calls.containsKey(call.file))
|
||||
decl1.own_calls.put(call.file, new Vector<>());
|
||||
if (decl1.needToInline) call.Select(true);
|
||||
call.canBeInlined = !decl1.doNotInline;
|
||||
if (decl1.needToInline==1) call.Select(true);
|
||||
call.canBeInlined = (decl1.doNotInline==1)?0:1;
|
||||
decl1.own_calls.get(call.file).add(call);
|
||||
node.add(new DefaultMutableTreeNode(call));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user