Skip to content

Commit

Permalink
Removed mistaken exports.
Browse files Browse the repository at this point in the history
  • Loading branch information
aserGarcia committed Apr 30, 2024
1 parent 6bd7e03 commit 1ee1e2a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions morpheus/_lib/include/morpheus/objects/factory_registry.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ class MORPHEUS_EXPORT FactoryRegistry
};

template <typename ObjectReturnTypeT>
std::mutex MORPHEUS_EXPORT FactoryRegistry<ObjectReturnTypeT>::m_mutex;
std::mutex FactoryRegistry<ObjectReturnTypeT>::m_mutex;

template <typename ObjectReturnTypeT>
std::map<std::string, std::function<std::shared_ptr<ObjectReturnTypeT>(nlohmann::json)>>
MORPHEUS_EXPORT FactoryRegistry<ObjectReturnTypeT>::m_object_constructors;
FactoryRegistry<ObjectReturnTypeT>::m_object_constructors;

} // namespace morpheus
6 changes: 3 additions & 3 deletions morpheus/_lib/include/morpheus/stages/deserialize.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ namespace morpheus {

using cm_task_t = std::pair<std::string, nlohmann::json>;

void MORPHEUS_EXPORT make_output_message(std::shared_ptr<MessageMeta>& incoming_message,
void make_output_message(std::shared_ptr<MessageMeta>& incoming_message,
TensorIndex start,
TensorIndex stop,
cm_task_t* task,
std::shared_ptr<MultiMessage>& windowed_message);

void MORPHEUS_EXPORT make_output_message(std::shared_ptr<MessageMeta>& incoming_message,
void make_output_message(std::shared_ptr<MessageMeta>& incoming_message,
TensorIndex start,
TensorIndex stop,
cm_task_t* task,
Expand Down Expand Up @@ -137,7 +137,7 @@ struct MORPHEUS_EXPORT DeserializeStageInterfaceProxy
};

template <typename OutputT>
typename DeserializeStage<OutputT>::subscribe_fn_t MORPHEUS_EXPORT DeserializeStage<OutputT>::build_operator()
typename DeserializeStage<OutputT>::subscribe_fn_t DeserializeStage<OutputT>::build_operator()
{
return [this](rxcpp::observable<sink_type_t> input, rxcpp::subscriber<source_type_t> output) {
return input.subscribe(rxcpp::make_observer<sink_type_t>(
Expand Down
2 changes: 1 addition & 1 deletion morpheus/_lib/include/morpheus/utilities/http_server.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ using parse_status_t = std::tuple<unsigned /*http status code*/,
*/
using payload_parse_fn_t = std::function<parse_status_t(const std::string& /* post body */)>;

MORPHEUS_EXPORT constexpr std::size_t DefaultMaxPayloadSize{1024 * 1024 * 10}; // 10MB
constexpr std::size_t DefaultMaxPayloadSize{1024 * 1024 * 10}; // 10MB

/**
* @brief A simple HTTP server that listens for POST or PUT requests on a given endpoint.
Expand Down

0 comments on commit 1ee1e2a

Please sign in to comment.