rice/Arg_operators.hpp in rice-1.3.0 vs rice/Arg_operators.hpp in rice-1.3.1
- old
+ new
@@ -6,14 +6,14 @@
//! Build the list of Arg objects into an Arguments object
/*! Take a list of Arg objects and build up a single Argument
* object used later in method dispatch
*/
- Arguments* operator,(const Arg& arg1, const Arg& arg2);
+ Arguments* operator,(Arg arg1, Arg arg2);
/*! @see operator,(Arg, Arg)
*/
- Arguments* operator,(Arguments* arguments, const Arg& arg);
+ Arguments* operator,(Arguments* arguments, Arg arg);
}
#endif // Rice__Arg_Operators_hpp_