summaryrefslogtreecommitdiff
path: root/libs/vr/libpdx/private/pdx/rpc/macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'libs/vr/libpdx/private/pdx/rpc/macros.h')
-rw-r--r--libs/vr/libpdx/private/pdx/rpc/macros.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/vr/libpdx/private/pdx/rpc/macros.h b/libs/vr/libpdx/private/pdx/rpc/macros.h
index 99325b5d65..aeae9d3e5e 100644
--- a/libs/vr/libpdx/private/pdx/rpc/macros.h
+++ b/libs/vr/libpdx/private/pdx/rpc/macros.h
@@ -28,7 +28,7 @@
// Clears any remaining contents wrapped in parentheses.
#define _PDX_CLEAR(...)
-// Introduces a first stub argument and _PDX_CLEAR as second argument.
+// Introduces a first dummy argument and _PDX_CLEAR as second argument.
#define _PDX_CLEAR_IF_LAST() _, _PDX_CLEAR
// Returns the first argument of a list.
@@ -45,7 +45,7 @@
// Returns next_func if the next element is not (), or _PDX_CLEAR
// otherwise.
//
-// _PDX_CLEAR_IF_LAST inserts an extra first stub argument if peek is ().
+// _PDX_CLEAR_IF_LAST inserts an extra first dummy argument if peek is ().
#define _PDX_NEXT_FUNC(next_element, next_func) \
_PDX_EXPAND_NEXT_FUNC(_PDX_CLEAR_IF_LAST next_element, next_func)