Re: [Preprocessor] small cleanups

2019-08-29 Thread Nathan Sidwell
On 8/29/19 3:57 AM, Bernhard Reutner-Fischer wrote: On Wed, 28 Aug 2019 14:42:57 -0400 Nathan Sidwell wrote: /* If opened with #import or contains #pragma once. */ - bool once_only; + bool once_only : 1; I'm curious why you have them as bool and not unsigned? because they're true/fa

Re: [Preprocessor] small cleanups

2019-08-29 Thread Bernhard Reutner-Fischer
On Wed, 28 Aug 2019 14:42:57 -0400 Nathan Sidwell wrote: >/* If opened with #import or contains #pragma once. */ > - bool once_only; > + bool once_only : 1; I'm curious why you have them as bool and not unsigned? thanks,