Skip to content

Commit

Permalink
db/simple: make more fields const
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxKellermann committed Jan 8, 2024
1 parent 1a67062 commit d3335f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/db/plugins/simple/SimpleDatabasePlugin.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ class DatabaseListener;
class PrefixedLightSong;

class SimpleDatabase : public Database {
AllocatedPath path;
const AllocatedPath path;
std::string path_utf8;

/**
* The path where cache files for Mount() are located.
*/
AllocatedPath cache_path;
const AllocatedPath cache_path;

Directory *root;

Expand Down

0 comments on commit d3335f9

Please sign in to comment.