test use of doxygen todo command

This commit is contained in:
Peter Thorson
2013-06-09 11:05:48 -05:00
parent 60b167bcb7
commit dc048ed021

View File

@@ -837,6 +837,8 @@ protected:
/**
* Validates an incoming hybi13 full header.
*
* \todo unit test for the >32 bit frames on 32 bit systems case
*
* @param h The basic header to validate
*
* @param e The extended header to validate
@@ -864,7 +866,6 @@ protected:
}
// Check for >32bit frames on 32 bit systems
// TODO: unit test for this case
if (sizeof(size_t) == 4 && (payload_size >> 32)) {
return make_error_code(error::requires_64bit);
}