Skip to content

Commit

Permalink
Add missing inline specifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrocaster committed Dec 10, 2015
1 parent 76becc0 commit dae8c68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/xrAICore/Navigation/a_star.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class CAStar : public CDijkstra<

public:
inline CAStar(const u32 max_vertex_count);
virtual ~CAStar();
inline virtual ~CAStar();
template <typename TPathManager>
inline bool find(TPathManager &path_manager);
};
Expand Down
2 changes: 1 addition & 1 deletion src/xrAICore/Navigation/dijkstra.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class CDijkstra

protected:
inline CDijkstra(const u32 max_vertex_count);
virtual ~CDijkstra();
inline virtual ~CDijkstra();
template <typename TPathManager>
inline void initialize(TPathManager &path_manager);
template <typename TPathManager>
Expand Down

0 comments on commit dae8c68

Please sign in to comment.