Skip to content

Commit

Permalink
fix name
Browse files Browse the repository at this point in the history
  • Loading branch information
drexlerd committed Nov 18, 2024
1 parent be14a4c commit 1efa111
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/loki/details/parser.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class DomainParser
DomainParser& operator=(DomainParser&& other) = default;

/// @brief Get factories to create additional PDDL objects.
PDDLRepositories& get_factories();
PDDLRepositories& get_repositories();

/// @brief Get position caches to be able to reference back to the input PDDL file.
const PDDLPositionCache& get_position_cache() const;
Expand Down
2 changes: 1 addition & 1 deletion src/parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ DomainParser::DomainParser(const fs::path& filepath, bool strict, bool quiet) :
}
}

PDDLRepositories& DomainParser::get_factories() { return m_repositories; }
PDDLRepositories& DomainParser::get_repositories() { return m_repositories; }

const PDDLPositionCache& DomainParser::get_position_cache() const { return *m_position_cache; }

Expand Down

0 comments on commit 1efa111

Please sign in to comment.