Skip to content

Commit

Permalink
remove consts
Browse files Browse the repository at this point in the history
  • Loading branch information
gonuke committed Apr 16, 2024
1 parent ec39b33 commit 359e96f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/package.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ class Package {
std::string strategy() const { return strategy_; }

// returns the unpackaged id (1)
static int unpackaged_id() const { return unpackaged_id_; }
static int unpackaged_id() { return unpackaged_id_; }

// returns the unpackaged package name
static std::string unpackaged_name() const { return unpackaged_name_; }
static std::string unpackaged_name() { return unpackaged_name_; }

// returns the unpackaged singleton object
static Ptr& unpackaged();
Expand Down

0 comments on commit 359e96f

Please sign in to comment.