summaryrefslogtreecommitdiff
path: root/src/VBox/Runtime/common/string/strformatnum.cpp
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2011-10-22 00:28:46 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2011-10-22 00:28:46 +0000
commitb9a73875364cec403fedafd1085196d21e84b419 (patch)
tree38e66e452e438eea8a219812ac476c216c51c7dd /src/VBox/Runtime/common/string/strformatnum.cpp
parentffad572cc8707c320b18b79a6f6d1d5490df9104 (diff)
downloadVirtualBox-svn-b9a73875364cec403fedafd1085196d21e84b419.tar.gz
IPRT: -Wunused-parameter.
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@39083 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/Runtime/common/string/strformatnum.cpp')
-rw-r--r--src/VBox/Runtime/common/string/strformatnum.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/VBox/Runtime/common/string/strformatnum.cpp b/src/VBox/Runtime/common/string/strformatnum.cpp
index 7527e1e1fdc..77fd384fd1c 100644
--- a/src/VBox/Runtime/common/string/strformatnum.cpp
+++ b/src/VBox/Runtime/common/string/strformatnum.cpp
@@ -155,6 +155,7 @@ RTDECL(ssize_t) RTStrFormatU64(char *pszBuf, size_t cbBuf, uint64_t u64Value, un
RTDECL(ssize_t) RTStrFormatU128(char *pszBuf, size_t cbBuf, PCRTUINT128U pu128, unsigned int uiBase,
signed int cchWidth, signed int cchPrecision, uint32_t fFlags)
{
+ NOREF(cchWidth); NOREF(cchPrecision);
if (uiBase != 16)
fFlags |= RTSTR_F_SPECIAL;
fFlags &= ~RTSTR_F_BIT_MASK;
@@ -173,6 +174,7 @@ RTDECL(ssize_t) RTStrFormatU128(char *pszBuf, size_t cbBuf, PCRTUINT128U pu128,
RTDECL(ssize_t) RTStrFormatR80u2(char *pszBuf, size_t cbBuf, PCRTFLOAT80U2 pr80Value, signed int cchWidth,
signed int cchPrecision, uint32_t fFlags)
{
+ NOREF(cchWidth); NOREF(cchPrecision); NOREF(fFlags);
char szTmp[160];
char *pszTmp = szTmp;