summary refs log tree commit diff stats
path: root/lib/token.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/token.cpp')
-rw-r--r--lib/token.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/token.cpp b/lib/token.cpp index aa8f50e..facab8a 100644 --- a/lib/token.cpp +++ b/lib/token.cpp
@@ -12,12 +12,12 @@ namespace verbly {
12 return _type; 12 return _type;
13 } 13 }
14 14
15 verb_token::verb_token(const class verb& _verb) : token(token::type::verb), _verb(&_verb) 15 verb_token::verb_token(const verb& _verb) : token(token::type::verb), _verb(&_verb)
16 { 16 {
17 17
18 } 18 }
19 19
20 const class verb& verb_token::verb() const 20 const verb& verb_token::get_verb() const
21 { 21 {
22 return *_verb; 22 return *_verb;
23 } 23 }