Skip to content

Commit

Permalink
Adding missing namespace prefix on ScaLAPACKHelper for LinearSolve
Browse files Browse the repository at this point in the history
  • Loading branch information
poulson committed Nov 22, 2016
1 parent 7a68be7 commit 5a68478
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lapack_like/solve/Linear.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ void LinearSolve
DistMatrixReadWriteProxy<F,F,MC,MR,BLOCK> BProx( B, proxyCtrl );
auto& ABlock = AProx.GetLocked();
auto& BBlock = BProx.Get();
ScaLAPACKHelper( ABlock, BBlock );
lin_solve::ScaLAPACKHelper( ABlock, BBlock );
return;
#else
if( A.Grid().Rank() == 0 )
Expand Down

0 comments on commit 5a68478

Please sign in to comment.