Fix more warnings (#260).

This commit is contained in:
EinMByte 2015-08-30 12:33:09 +02:00
parent ee0d603a81
commit 6dd36b8289
3 changed files with 5 additions and 5 deletions

View file

@ -60,7 +60,7 @@ if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
) )
endif() endif()
elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang") elseif(CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -undefined dynamic_lookup") # TODO: Clang-specific flags
endif() endif()
# Compiler flags customization (by system) # Compiler flags customization (by system)

View file

@ -158,8 +158,8 @@ void I2PControlService::SendResponse(std::shared_ptr<boost::asio::ip::tcp::socke
); );
} }
void I2PControlService::HandleResponseSent(const boost::system::error_code& ecode, std::size_t bytes_transferred, void I2PControlService::HandleResponseSent(const boost::system::error_code& ecode, std::size_t,
std::shared_ptr<boost::asio::ip::tcp::socket> socket, std::shared_ptr<I2PControlBuffer> buf) std::shared_ptr<boost::asio::ip::tcp::socket> socket, std::shared_ptr<I2PControlBuffer>)
{ {
if(ecode) if(ecode)
LogPrint(eLogError, "I2PControl write error: ", ecode.message()); LogPrint(eLogError, "I2PControl write error: ", ecode.message());

View file

@ -40,14 +40,14 @@ private:
private: private:
std::shared_ptr<I2PControlSession> m_Session;
bool m_IsRunning; bool m_IsRunning;
std::thread * m_Thread; std::thread * m_Thread;
boost::asio::io_service m_Service; boost::asio::io_service m_Service;
boost::asio::ip::tcp::acceptor m_Acceptor; boost::asio::ip::tcp::acceptor m_Acceptor;
std::shared_ptr<I2PControlSession> m_Session;
}; };
} }
} }