Skip to content
Snippets Groups Projects
Commit 678c09c8 authored by Roberto Raggi's avatar Roberto Raggi
Browse files

Made line and column unsigned ints.

parent 22f223e7
No related branches found
No related tags found
No related merge requests found
...@@ -138,10 +138,10 @@ public: ...@@ -138,10 +138,10 @@ public:
QString fileName() const QString fileName() const
{ return _fileName; } { return _fileName; }
int line() const unsigned line() const
{ return _line; } { return _line; }
int column() const unsigned column() const
{ return _column; } { return _column; }
QString text() const QString text() const
...@@ -150,8 +150,8 @@ public: ...@@ -150,8 +150,8 @@ public:
private: private:
int _level; int _level;
QString _fileName; QString _fileName;
int _line; unsigned _line;
int _column; unsigned _column;
QString _text; QString _text;
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment