Skip to content

Commit

Permalink
fix: set MANAGEDEXTENT=0 to avoid %ZHSLIB conflict
Browse files Browse the repository at this point in the history
This fixes compilation errors during installation on IRIS for Health <2024.1
  • Loading branch information
isc-tleavitt committed Apr 12, 2024
1 parent e9d6e93 commit 68ce76b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/cls/IPM/ExtensionBase/UniversalSettings.cls
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ Parameter DEFAULTGLOBAL = "^IPM.ExtensionBase.UniSettings";
/// A string to show in the grouping of settings for this class.
Parameter DESCRIPTION = "Universal source control options";

/// Other classes may reasonably also map to this global, so don't complain about it.
Parameter MANAGEDEXTENT As INTEGER [ Constraint = "0,1", Flags = ENUM ] = 0;

/// An inherited IDKey index on this property means that the default value is
/// used as a subscript under <DataLocation> in the storage definition.
Property Key As %String [ InitialExpression = {$classname()}, ReadOnly ];
Expand Down

0 comments on commit 68ce76b

Please sign in to comment.