summaryrefslogtreecommitdiff
path: root/src/formats
diff options
context:
space:
mode:
Diffstat (limited to 'src/formats')
-rw-r--r--src/formats/osml/OsmlStreamParser.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/formats/osml/OsmlStreamParser.hpp b/src/formats/osml/OsmlStreamParser.hpp
index 3827118..dc3034c 100644
--- a/src/formats/osml/OsmlStreamParser.hpp
+++ b/src/formats/osml/OsmlStreamParser.hpp
@@ -139,24 +139,24 @@ public:
/**
* Set to true if this is a command with clear begin and end.
*/
- bool hasRange;
+ bool hasRange : 1;
/**
* Set to true if we are currently inside a field of this command.
*/
- bool inField;
+ bool inField : 1;
/**
* Set to true if we are currently in the range field of the command
* (implies inField being set to true).
*/
- bool inRangeField;
+ bool inRangeField : 1;
/**
* Set to true if we are currently in a field that has been especially
* marked as default field (using the "|") syntax.
*/
- bool inDefaultField;
+ bool inDefaultField : 1;
/**
* Default constructor.