@@ -298,49 +298,49 @@ struct Suppressions
298298
299299namespace polyspace {
300300
301- struct Suppression {
302- std::string family;
303- std::string resultName;
304- std::string filename;
305- int lineBegin;
306- int lineEnd;
307-
308- bool matches (const Suppression &other) const ;
309- bool convert (const Settings &settings, SuppressionList::Suppression &suppr) const ;
310- };
301+ struct Suppression {
302+ std::string family;
303+ std::string resultName;
304+ std::string filename;
305+ int lineBegin;
306+ int lineEnd;
307+
308+ bool matches (const Suppression &other) const ;
309+ bool convert (const Settings &settings, SuppressionList::Suppression &suppr) const ;
310+ };
311311
312- class Parser {
313- public:
314- Parser () = delete ;
315- Parser (const Settings &settings) : mSettings (settings) {}
316- void collect (SuppressionList &suppressions) const ;
317- void parse (const std::string &comment, int line, const std::string &filename);
312+ class Parser {
313+ public:
314+ Parser () = delete ;
315+ Parser (const Settings &settings) : mSettings (settings) {}
316+ void collect (SuppressionList &suppressions) const ;
317+ void parse (const std::string &comment, int line, const std::string &filename);
318318
319- private:
320- std::string peekToken ();
321- std::string nextToken ();
322- void finishSuppression ();
323- bool parseEntry ();
319+ private:
320+ std::string peekToken ();
321+ std::string nextToken ();
322+ void finishSuppression ();
323+ bool parseEntry ();
324324
325- enum class CommentKind {
326- Regular, Begin, End,
327- };
325+ enum class CommentKind {
326+ Regular, Begin, End,
327+ };
328328
329- std::list<Suppression> mStarted ;
330- std::list<Suppression> mDone ;
331- std::string mComment ;
332- std::string mFilename ;
333- int mLine {};
334- int mRange {};
335- CommentKind mKind {};
336- std::string mFamily ;
337- std::string mResultName ;
338- std::string mPeeked ;
339- bool mHasPeeked {};
340- const Settings &mSettings ;
341- };
329+ std::list<Suppression> mStarted ;
330+ std::list<Suppression> mDone ;
331+ std::string mComment ;
332+ std::string mFilename ;
333+ int mLine {};
334+ int mRange {};
335+ CommentKind mKind {};
336+ std::string mFamily ;
337+ std::string mResultName ;
338+ std::string mPeeked ;
339+ bool mHasPeeked {};
340+ const Settings &mSettings ;
341+ };
342342
343- bool isPolyspaceComment (const std::string &comment);
343+ bool isPolyspaceComment (const std::string &comment);
344344
345345}
346346
0 commit comments