Skip to content

Commit

Permalink
proper fail if assocation file not found
Browse files Browse the repository at this point in the history
  • Loading branch information
mp3guy committed Mar 24, 2015
1 parent 06262bb commit 5989d2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ICP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ int main(int argc, char * argv[])
ICPOdometry icpOdom(640, 480, 320, 240, 528, 528);
ICPSlowdometry icpSlowdom(640, 480, 320, 240, 528, 528);

assert(!asFile.eof());
assert(!asFile.eof() && asFile.is_open());

loadDepth(firstRaw);
uint64_t timestamp = loadDepth(secondRaw);
Expand Down

0 comments on commit 5989d2e

Please sign in to comment.