Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Karel Burda committed Oct 13, 2018
1 parent fc0290f commit ecd9a22
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,13 @@ catch (const function_loader::exceptions::library_load_failed & error)
}
catch (const function_loader::exceptions::library_handle_invalid & error)
{
// happens when "get_function" called on the function_loader with invalid library handle (may happen after the object was moved)
// happens when "get_function" called on the function_loader with invalid library handle
// (may happen after the object was moved)
}
catch (const function_loader::exceptions::function_does_not_exist & error)
{
// given function not found in the library, might be caused by incorrect signature, or function is not exported (visible) from outside
// given function not found in the library, might be caused by incorrect signature,
// or function is not exported (visible) from outside
}
```

Expand Down

0 comments on commit ecd9a22

Please sign in to comment.