Merge pull request #5066 from kjbracey-arm/uartserial_readable

UARTSerial: Avoid readable() ambiguity
pull/5217/head
Jimmy Brisson 2017-09-28 14:08:43 -05:00 committed by GitHub
commit f7cca5b023
1 changed files with 6 additions and 0 deletions

View File

@ -56,6 +56,12 @@ public:
*/
virtual short poll(short events) const;
/* Resolve ambiguities versus our private SerialBase
* (for writable, spelling differs, but just in case)
*/
using FileHandle::readable;
using FileHandle::writable;
/** Write the contents of a buffer to a file
*
* @param buffer The buffer to write from