summaryrefslogtreecommitdiff
path: root/include/iprt/sg.h
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2023-05-11 01:01:08 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2023-05-11 01:01:08 +0000
commite70d817fc58fe57d35cc482f775d14867d9a3829 (patch)
treeee329e28a974a3d303c8306edf82d7f2b2dd5519 /include/iprt/sg.h
parentf6e04aac8a5c0dec9b9a5a338813733293f8815b (diff)
downloadVirtualBox-svn-e70d817fc58fe57d35cc482f775d14867d9a3829.tar.gz
*: doxygen corrections (mostly about removing @returns from functions returning void).
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@99739 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'include/iprt/sg.h')
-rw-r--r--include/iprt/sg.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/include/iprt/sg.h b/include/iprt/sg.h
index ce88e3585f1..31b27064ce5 100644
--- a/include/iprt/sg.h
+++ b/include/iprt/sg.h
@@ -195,7 +195,6 @@ DECLINLINE(bool) RTSgBufIsAtStartOfSegment(PCRTSGBUF pSgBuf)
/**
* Initialize a S/G buffer structure.
*
- * @returns nothing.
* @param pSgBuf Pointer to the S/G buffer to initialize.
* @param paSegs Pointer to the start of the segment array.
* @param cSegs Number of segments in the array.
@@ -209,7 +208,6 @@ RTDECL(void) RTSgBufInit(PRTSGBUF pSgBuf, PCRTSGSEG paSegs, size_t cSegs);
/**
* Resets the internal buffer position of the S/G buffer to the beginning.
*
- * @returns nothing.
* @param pSgBuf The S/G buffer to reset.
*/
RTDECL(void) RTSgBufReset(PRTSGBUF pSgBuf);
@@ -217,7 +215,6 @@ RTDECL(void) RTSgBufReset(PRTSGBUF pSgBuf);
/**
* Clones a given S/G buffer.
*
- * @returns nothing.
* @param pSgBufNew The new S/G buffer to clone to.
* @param pSgBufOld The source S/G buffer to clone from.
*