You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
353 B

typedef boost::shared_ptr < RatherLongClassName > sp_RatherLongClassName_t;
int main()
{
int argument = 1;
sp_RatherLongClassName_t ratherLongVariableName1(new RatherLongClassName(argument,
argument, argument));
int the_result = a_very_long_function_name_taking_most_of_the_line(argument,
argument, argument);
return 0;
}