Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/cppkafka/utils/buffered_producer.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ namespace cppkafka {
*/
template <typename BufferType,
typename Allocator = std::allocator<ConcreteMessageBuilder<BufferType>>>
class CPPKAFKA_API BufferedProducer {
class BufferedProducer {
public:
enum class FlushMethod {
Sync, ///< Empty the buffer and wait for acks from the broker.
Expand Down
4 changes: 2 additions & 2 deletions include/cppkafka/utils/compacted_topic_processor.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ namespace cppkafka {
* \brief Events generated by a CompactedTopicProcessor
*/
template <typename Key, typename Value>
class CPPKAFKA_API CompactedTopicEvent {
class CompactedTopicEvent {
public:
/**
* \brief Event type enum
Expand Down Expand Up @@ -111,7 +111,7 @@ class CPPKAFKA_API CompactedTopicEvent {
};

template <typename Key, typename Value>
class CPPKAFKA_API CompactedTopicProcessor {
class CompactedTopicProcessor {
public:
/**
* The type of events generated by this processor
Expand Down
2 changes: 1 addition & 1 deletion include/cppkafka/utils/consumer_dispatcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ namespace cppkafka {
* * EOF: void(BasicConsumerDispatcher::EndOfFile, TopicPartition)
*/
template <typename ConsumerType>
class CPPKAFKA_API BasicConsumerDispatcher {
class BasicConsumerDispatcher {
public:
/**
* Tag to indicate a timeout occurred
Expand Down