Browse Source

Fix LOCKFILE fallback

`throw` needs to provide an actual std::exception or it will not be
caught
newinvert
Seth Hillbrand 3 years ago
parent
commit
844226e6b9
  1. 2
      include/lockfile.h

2
include/lockfile.h

@ -105,7 +105,7 @@ public:
}
else
{
throw;
throw std::runtime_error( "Failed to open lock file" );
}
}
catch( std::exception& e )

Loading…
Cancel
Save