Remove doxygen errors, update Doxyfile to latest version.

This commit is contained in:
Thulinma 2014-01-05 11:57:56 +01:00
parent 33427f1663
commit b5a4ea1b93
10 changed files with 1429 additions and 939 deletions

View file

@ -400,7 +400,9 @@ void TS::Packet::FillFree(std::string & NewVal){
/// Fills the free bytes of the TS::Packet.
/// Stores as many bytes from NewVal as possible in the packet.
/// The minimum of TS::Packet::BytesFree and maxLen is used.
/// \param NewVal The data to store in the packet.
/// \param maxLen The maximum amount of bytes to store.
int TS::Packet::FillFree(const char* NewVal, int maxLen){
int toWrite = std::min((int)BytesFree(), maxLen);
strBuf += std::string(NewVal, toWrite);