You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: OMCompiler/Compiler/FrontEnd/DAE.mo
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -556,8 +556,12 @@ uniontype VariableAttributes
556
556
end VAR_ATTR_ENUMERATION;
557
557
end VariableAttributes;
558
558
559
-
public constant VariableAttributes emptyVarAttrReal =VAR_ATTR_REAL(NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE());
560
-
public constant VariableAttributes emptyVarAttrBool =VAR_ATTR_BOOL(NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE());
559
+
public constant VariableAttributes emptyVarAttrReal =VAR_ATTR_REAL(NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE());
560
+
public constant VariableAttributes emptyVarAttrInt =VAR_ATTR_INT(NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE());
561
+
public constant VariableAttributes emptyVarAttrBool =VAR_ATTR_BOOL(NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE());
562
+
public constant VariableAttributes emptyVarAttrClock =VAR_ATTR_CLOCK(NONE(),NONE());
563
+
public constant VariableAttributes emptyVarAttrString =VAR_ATTR_STRING(NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE());
564
+
public constant VariableAttributes emptyVarAttrEnum =VAR_ATTR_ENUMERATION(NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE(),NONE());
0 commit comments