From ee35c20817b68a19cb4f75dd22851fe67f60194a Mon Sep 17 00:00:00 2001 From: Justin Seyster Date: Thu, 21 Oct 2010 15:33:57 -0400 Subject: [PATCH] Clarified assignment pointcut docs. --- src/aop-pc-assign.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/aop-pc-assign.c b/src/aop-pc-assign.c index 6128bdc..6cb10aa 100644 --- a/src/aop-pc-assign.c +++ b/src/aop-pc-assign.c @@ -377,7 +377,8 @@ op_join_on_copy_assign (struct aop_pointcut *pc, int copy, join_callback cb, * By default, assignment pointcuts do not include assignments to * temporary variables. These assignments will usually only be useful * to users trying to debug the compiler with InterAsepct. - * \param pc The pointcut to modify with the filter. + * \param pc The assignment pointcut to filter. Assignment pointcuts + * are created with aop_match_assignment_by_type(). */ void aop_filter_include_temps (struct aop_pointcut *pc) @@ -392,7 +393,8 @@ aop_filter_include_temps (struct aop_pointcut *pc) * * This function is provided to undo the effect of * aop_filter_include_temps(); by default, you do not need to call it. - * \param pc The pointcut to modify with the filter. + * \param pc The assignment pointcut to filter. Assignment pointcuts + * are created with aop_match_assignment_by_type(). */ void aop_filter_exclude_temps (struct aop_pointcut *pc) -- 2.34.1