summaryrefslogtreecommitdiff
path: root/cpp/include/Slice/Parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/Slice/Parser.h')
-rw-r--r--cpp/include/Slice/Parser.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/cpp/include/Slice/Parser.h b/cpp/include/Slice/Parser.h
index a3db93ab5e4..ab2bc56dc6f 100644
--- a/cpp/include/Slice/Parser.h
+++ b/cpp/include/Slice/Parser.h
@@ -929,12 +929,11 @@ class SLICE_API Unit : virtual public Container
{
public:
- static UnitPtr createUnit(bool, bool, bool, bool, const StringList& = StringList());
+ static UnitPtr createUnit(bool, bool, bool, const StringList& = StringList());
bool ignRedefs() const;
bool allowIcePrefix() const;
- bool caseSensitive() const;
void setComment(const std::string&);
std::string currentComment(); // Not const, as this function removes the current comment.
@@ -997,13 +996,12 @@ public:
private:
- Unit(bool, bool, bool, bool, const StringList&);
+ Unit(bool, bool, bool, const StringList&);
static void eraseWhiteSpace(::std::string&);
bool _ignRedefs;
bool _all;
bool _allowIcePrefix;
- bool _caseSensitive;
StringList _defaultGlobalMetaData;
int _errors;
std::string _currentComment;