Example #1
0
 void pack_arg(message& msg, Arg&& arg, Args&&... args)
 {
     msg.put(arg);
     pack_arg(msg, std::forward<Args>(args)...);
 }
Example #2
0
 void pack_arg(message& msg, Arg&& arg)
 {
     msg.put(arg);
 }