aboutsummaryrefslogtreecommitdiff
path: root/gcc/d/dmd/common
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/d/dmd/common')
-rw-r--r--gcc/d/dmd/common/outbuffer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/d/dmd/common/outbuffer.h b/gcc/d/dmd/common/outbuffer.h
index b672842..4c1dcee 100644
--- a/gcc/d/dmd/common/outbuffer.h
+++ b/gcc/d/dmd/common/outbuffer.h
@@ -21,11 +21,11 @@ struct OutBuffer
private:
DArray<unsigned char> data;
d_size_t offset;
- bool notlinehead;
+ d_bool notlinehead;
void *fileMapping; // pointer to a file mapping object not used on the C++ side
public:
- bool doindent;
- bool spaces;
+ d_bool doindent;
+ d_bool spaces;
int level;
OutBuffer()