mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2025-12-02 02:04:42 +00:00
more robust type cast in I/O functions
This commit is contained in:
@@ -187,7 +187,7 @@ int main(int argc, char *argv[])
|
||||
{
|
||||
process<DSample>(outFileName, fileName, code);
|
||||
}
|
||||
catch (bad_cast &e)
|
||||
catch (Exceptions::Definition)
|
||||
{
|
||||
process<DMatSample>(outFileName, fileName, code);
|
||||
}
|
||||
|
||||
@@ -46,7 +46,7 @@ int main(int argc, char *argv[])
|
||||
Io::save(s, copy, File::Mode::write, name);
|
||||
}
|
||||
}
|
||||
catch (bad_cast &e)
|
||||
catch (Exceptions::Definition)
|
||||
{
|
||||
DSample s = Io::load<DSample>(fileName);
|
||||
string name = Io::getFirstName(fileName);
|
||||
|
||||
Reference in New Issue
Block a user