Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix staticmemory variant build #56

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/aunit/framework/staticmemory/aunit-memory.adb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
-- Dummy implementation.

with System.Storage_Elements;
with Unchecked_Conversion;
with Ada.Unchecked_Conversion;

package body AUnit.Memory is

Expand All @@ -49,7 +49,7 @@ package body AUnit.Memory is

Top : Mark_Id := Mem'First;

function To_Mark_Id is new Unchecked_Conversion
function To_Mark_Id is new Ada.Unchecked_Conversion
(size_t, Mark_Id);

-----------
Expand Down