Skip to content

Commit

Permalink
warning
Browse files Browse the repository at this point in the history
  • Loading branch information
eisenhauer committed May 17, 2024
1 parent 06911b6 commit 4699b0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/adios2/toolkit/remote/Remote.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Remote::GetHandle Remote::Get(char *VarName, size_t Step, size_t BlockID, Dims &
void *dest)
{
ThrowUp("RemoteGet");
return (intptr_t)0;
return (Remote::GetHandle)(intptr_t)0;
};

bool Remote::WaitForGet(GetHandle handle)
Expand All @@ -49,7 +49,7 @@ bool Remote::WaitForGet(GetHandle handle)
Remote::GetHandle Remote::Read(size_t Start, size_t Size, void *Dest)
{
ThrowUp("RemoteRead");
return 0;
return (Remote::GetHandle)0;
};
Remote::~Remote() {}
Remote::Remote() {}
Expand Down

0 comments on commit 4699b0a

Please sign in to comment.