Skip to content

Commit

Permalink
Forgotten header modifications.
Browse files Browse the repository at this point in the history
  • Loading branch information
matz-e committed Jul 23, 2024
1 parent 0200e0f commit 62a5a49
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/config/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ class PathHelper {
/// pre-defined paths to search for files
const static std::vector<std::string> BASE_SEARCH_PATHS;

/// prefix to use when looking for libraries
const static std::string SHARED_LIBRARY_PREFIX;

/// suffix to use when looking for libraries
const static std::string SHARED_LIBRARY_SUFFIX;

Expand All @@ -54,7 +57,7 @@ class PathHelper {
/**
* Search for a given relative file path
*/
static std::string get_path(const std::string& what, bool add_library_suffix = false);
static std::string get_path(const std::string& what, bool is_library = false);

public:
/**
Expand Down

0 comments on commit 62a5a49

Please sign in to comment.