diff options
author | Matthew Bauer <mjbauer95@gmail.com> | 2020-06-17 13:26:37 -0400 |
---|---|---|
committer | Matthew Bauer <mjbauer95@gmail.com> | 2020-06-17 13:26:37 -0400 |
commit | f767bedfac66bff297499f68b234ac63b02c8f62 (patch) | |
tree | 678eff9f5190528b1b8890cc8c1e9d2e6917f133 /src/libstore | |
parent | 2f51cd8dc95231b2e2f5b3bd75ac6d8d2dece361 (diff) |
Replace struct StorePath with class StorePath
also a similar case with struct Goal
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/build.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc index e1d812b09..3afebfcf4 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -86,7 +86,7 @@ struct HookInstance; /* A pointer to a goal. */ -class Goal; +struct Goal; class DerivationGoal; typedef std::shared_ptr<Goal> GoalPtr; typedef std::weak_ptr<Goal> WeakGoalPtr; |