This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 16/22] Class-ify ui_out_level


On 11/26/2016 04:22 PM, Simon Marchi wrote:
> On 2016-11-24 13:41, Pedro Alves wrote:
>>> -struct ui_out_level
>>> +/* A level of nesting (either a list or a tuple) in a ui_out
>>> output.  */
>>> +
>>> +class ui_out_level
>>> +{
>>> + public:
>>> +
>>> +  ui_out_level (ui_out_type type)
>>
>> explicit ?
> 
> I had a discussion about this with Antoine.  Is it a good practice to
> use explicit all the time, and only omit it when there's a good reason
> why?  

Yes, I believe so.

Let's turn the question around: why _would_ you want to support 
implicit conversion from ui_out_type to ui_out_level?
E.g, would this code make any sense?

  ui_out_level level = ui_out_type_list;
  if (level == ui_out_type_tuple)

I'd leave implicit conversions for when you're actually trying
to code a converting constructor.

> I initially put it on all the constructors, but decided to drop it
> after our discussion.

Thanks,
Pedro Alves


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]