diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-29 22:52:29 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-29 22:52:29 +0100 |
commit | 90b2e9507e9d720452792b863b422221fe96d948 (patch) | |
tree | 407a271de4730d087de4132eab3921c44c65e400 /test/core/model/TestDocumentBuilder.hpp | |
parent | de0891c69166f6988e0b13137f9bf2b7b67449f2 (diff) |
Unified signature of resolve functions, passing the "owner" to the callback functions in ParserScope::resolve
Diffstat (limited to 'test/core/model/TestDocumentBuilder.hpp')
-rw-r--r-- | test/core/model/TestDocumentBuilder.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/model/TestDocumentBuilder.hpp b/test/core/model/TestDocumentBuilder.hpp index 149b88e..71b353d 100644 --- a/test/core/model/TestDocumentBuilder.hpp +++ b/test/core/model/TestDocumentBuilder.hpp @@ -48,7 +48,7 @@ static Rooted<Descriptor> resolveDescriptor(Handle<Document> doc, const Rtti &type) { // use the actual resolve method. - std::vector<ResolutionResult> resolved = doc->resolve(path, type); + std::vector<ResolutionResult> resolved = doc->resolve(type, path); // if we don't find anything, log an error if (resolved.size() == 0) { logger.error(std::string("Could not resolve ") + getPathString(path)); |