Skip to content

Commit 8b3f508

Browse files
committed
Merge branch 'mr/issue_323' into 'master'
Remove not null constraint on Project_Env Closes #323 See merge request eng/ide/libadalang-tools!386
2 parents c82871a + 9892773 commit 8b3f508

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/utils-projects.adb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1319,7 +1319,7 @@ package body Utils.Projects is
13191319
(Cmd : in out Command_Line;
13201320
Global_Report_Dir : out String_Ref;
13211321
The_Project_Tree : out not null Project_Tree_Access;
1322-
The_Project_Env : out not null Project_Environment_Access;
1322+
The_Project_Env : out Project_Environment_Access;
13231323
Preprocessing_Allowed : Boolean;
13241324
Tool_Package_Name : String;
13251325
Compute_Project_Closure : Boolean := True;

src/utils-projects.ads

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ package Utils.Projects is
3333
(Cmd : in out Command_Line;
3434
Global_Report_Dir : out String_Ref;
3535
The_Project_Tree : out not null Project_Tree_Access;
36-
The_Project_Env : out not null Project_Environment_Access;
36+
The_Project_Env : out Project_Environment_Access;
3737
Preprocessing_Allowed : Boolean;
3838
Tool_Package_Name : String;
3939
Compute_Project_Closure : Boolean := True;

0 commit comments

Comments
 (0)