Skip to content

Commit

Permalink
F2 supplemental
Browse files Browse the repository at this point in the history
  • Loading branch information
MaartenHilferink committed Sep 12, 2023
1 parent 7a3f8a7 commit 1bd8f6a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions clc/dll/include/OperAttrBin.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,18 +131,18 @@ struct BinaryAttrOper : AbstrBinaryAttrOper
, [arg1, arg2, af](tile_id t) { return prepare_data{ arg1->GetFutureTile(af & AF1_ISPARAM ? 0 : t), arg2->GetFutureTile(af & AF2_ISPARAM ? 0 : t) }; }
, [this, af MG_DEBUG_ALLOCATOR_SRC_PARAM](sequence_traits<ResultValueType>::seq_t resData, prepare_data futureData)
{
// if (resultAdi->WasFailed(FR_Data))
// resultAdi->ThrowFail();
// try {
if (resultAdi->WasFailed(FR_Data))
resultAdi->ThrowFail();
try {
auto futureTileA = throttled_async([&futureData] { return futureData.first->GetTile(); });
auto tileB = futureData.second->GetTile();
this->CalcTile(resData, futureTileA.get().get_view(), tileB.get_view(), af MG_DEBUG_ALLOCATOR_SRC_PARAM);
// }
// catch (...)
// {
// resultAdi->CatchFail(FailType::FR_Data);
// throw;
// }
}
catch (...)
{
resultAdi->CatchFail(FailType::FR_Data);
throw;
}
}
MG_DEBUG_ALLOCATOR_SRC_PARAM
);
Expand Down

0 comments on commit 1bd8f6a

Please sign in to comment.