Skip to content

Commit

Permalink
fixup ExtIntExc
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilMiller committed Aug 21, 2023
1 parent 1f5060a commit c053660
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/utilities/ExternalIntegrationException.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace external {

public:

ExternalIntegrationException(char const *const message) noexcept : ExternalIntegrationException(string(message)) {}
ExternalIntegrationException(char const *const message) noexcept : ExternalIntegrationException(std::string(message)) {}

ExternalIntegrationException(std::string message) noexcept : std::exception(), what_message(std::move(message)) {}

Expand Down

0 comments on commit c053660

Please sign in to comment.