Skip to content

Commit

Permalink
fix initializers
Browse files Browse the repository at this point in the history
  • Loading branch information
gonuke committed Apr 16, 2024
1 parent 8f3e31a commit ec39b33
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 @@ -64,8 +64,8 @@ class Package {
std::string strategy = "first");

static const int unpackaged_id_ = 1;
static const char* unpackaged_name_ = "unpackaged";
static Ptr unpackaged_ = NULL;
static const char unpackaged_name_[11] = "unpackaged";
static Package* unpackaged_ = NULL;
static int next_package_id_;

std::string name_;
Expand Down

0 comments on commit ec39b33

Please sign in to comment.