summaryrefslogtreecommitdiff
path: root/src/core/parser
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/parser')
-rw-r--r--src/core/parser/Scope.cpp2
-rw-r--r--src/core/parser/Scope.hpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/parser/Scope.cpp b/src/core/parser/Scope.cpp
index f452ce8..c73b908 100644
--- a/src/core/parser/Scope.cpp
+++ b/src/core/parser/Scope.cpp
@@ -24,7 +24,7 @@ namespace ousia {
namespace parser {
Rooted<Node> Scope::resolve(const std::vector<std::string> &path,
- const RttiBase &type, Logger &logger)
+ const RttiType &type, Logger &logger)
{
// Go up the stack and try to resolve the
for (auto it = nodes.rbegin(); it != nodes.rend(); it++) {
diff --git a/src/core/parser/Scope.hpp b/src/core/parser/Scope.hpp
index d015371..01a8ea7 100644
--- a/src/core/parser/Scope.hpp
+++ b/src/core/parser/Scope.hpp
@@ -153,7 +153,7 @@ public:
* found.
*/
Rooted<Node> resolve(const std::vector<std::string> &path,
- const RttiBase &type, Logger &logger);
+ const RttiType &type, Logger &logger);
};
/* Class ScopedScope -- inline declaration of some methods */