Merge pull request #77 from javeme/return-type-of-waiting

Correct the returning type of Connection::waiting()
This commit is contained in:
Martijn Otto 2016-07-04 09:41:54 +02:00 committed by GitHub
commit c055b1a439
1 changed files with 1 additions and 1 deletions

View File

@ -190,7 +190,7 @@ public:
* meantime you can already send more instructions over it) * meantime you can already send more instructions over it)
* @return bool * @return bool
*/ */
std::size_t waiting() const bool waiting() const
{ {
return _implementation.waiting(); return _implementation.waiting();
} }