summaryrefslogtreecommitdiff
path: root/hscript/key.hh
diff options
context:
space:
mode:
Diffstat (limited to 'hscript/key.hh')
-rw-r--r--hscript/key.hh6
1 files changed, 3 insertions, 3 deletions
diff --git a/hscript/key.hh b/hscript/key.hh
index 786df2d..0a53124 100644
--- a/hscript/key.hh
+++ b/hscript/key.hh
@@ -26,8 +26,8 @@ namespace Keys {
class Key {
protected:
/*! The line number where this Key appeared. */
- int line;
- Key(int _line) : line(_line) {}
+ long line;
+ Key(long _line) : line(_line) {}
public:
virtual ~Key();
@@ -56,7 +56,7 @@ public:
*/
virtual bool execute(ScriptOptions) const = 0;
- int lineno() const { return this->line; }
+ long lineno() const { return this->line; }
};