Skip to content

Commit

Permalink
Fix type change.
Browse files Browse the repository at this point in the history
  • Loading branch information
abellgithub committed Mar 5, 2020
1 parent 6090ac8 commit a5db153
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/e57/io/E57Reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,8 @@ void E57Reader::initialize()
try
{
arbiter::Arbiter arb;
auto fileHandle = arb.getLocalHandle(m_filename);
m_imf.reset(new ImageFile(fileHandle->localPath(), "r"));
arbiter::LocalHandle fileHandle = arb.getLocalHandle(m_filename);
m_imf.reset(new ImageFile(fileHandle.localPath(), "r"));
StructureNode root = m_imf->root();

if (!root.isDefined("/data3D"))
Expand Down

0 comments on commit a5db153

Please sign in to comment.