diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-20 05:29:26 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2014-11-20 05:29:26 +0100 |
commit | b0bc20bdeae770de3726f87d8ea13038491b2e29 (patch) | |
tree | ea48665e9aec8179c5320be37b4b1a565d12696b /src/error.h | |
parent | e909fb2179724b5619213520ca46cc31b4e6713b (diff) | |
download | sciteco-b0bc20bdeae770de3726f87d8ea13038491b2e29.tar.gz |
simplified attaching errors to a position in a macro
introduced Error::set_coord()
Diffstat (limited to 'src/error.h')
-rw-r--r-- | src/error.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/error.h b/src/error.h index 2786929..d0849c7 100644 --- a/src/error.h +++ b/src/error.h @@ -101,6 +101,13 @@ public: Error(const Error &inst); ~Error(); + inline void + set_coord(const gchar *str, gint _pos) + { + pos = _pos; + String::get_coord(str, pos, line, column); + } + void add_frame(Frame *frame); void display_short(void); |