Skip to content
This repository has been archived by the owner on Feb 12, 2021. It is now read-only.

Fixed compiler warnings #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 src/SimplePocoHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ void SimplePocoHandler::loop()

if (m_impl->connection && m_impl->inputBuffer.available())
{
size_t count = m_impl->connection->parse(m_impl->inputBuffer.data(),
uint64_t count = m_impl->connection->parse(m_impl->inputBuffer.data(),
m_impl->inputBuffer.available());

if (count == m_impl->inputBuffer.available())
Expand Down
2 changes: 1 addition & 1 deletion src/SimplePocoHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include <memory>
#include <amqpcpp.h>

class SimplePocoHandlerImpl;
struct SimplePocoHandlerImpl;
class SimplePocoHandler: public AMQP::ConnectionHandler
{
public:
Expand Down