We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9308256 commit 1a55f72Copy full SHA for 1a55f72
iceoryx_hoofs/testing/include/iceoryx_hoofs/testing/mocks/error_handler_mock.hpp
@@ -16,6 +16,7 @@
16
#ifndef IOX_HOOFS_TESTUTILS_ERROR_HANDLER_MOCK_HPP
17
#define IOX_HOOFS_TESTUTILS_ERROR_HANDLER_MOCK_HPP
18
19
+#include "iceoryx_hoofs/cxx/function.hpp"
20
#include "iceoryx_hoofs/error_handling/error_handler.hpp"
21
#include <mutex>
22
@@ -24,7 +25,7 @@
24
25
namespace iox
26
{
27
template <typename Error>
-using TypedHandlerFunction = std::function<void(const Error, const ErrorLevel)>;
28
+using TypedHandlerFunction = cxx::function<void(const Error, const ErrorLevel)>;
29
30
/// @brief This mock is needed for unit testing, special debugging cases and
31
/// other corner cases where we'd like to explicitly suppress the
0 commit comments