Skip to content

Commit

Permalink
trimming the hedges
Browse files Browse the repository at this point in the history
  • Loading branch information
admercs committed Apr 25, 2024
1 parent 5d15930 commit f65c7db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions AutonomyLib/include/sensors/SensorCollection.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ namespace autonomylib {

class SensorCollection : public UpdatableObject {

private:
typedef UpdatableContainer<SensorBasePtr> SensorBaseContainer;
unordered_map<uint, unique_ptr<SensorBaseContainer>> sensors_;

public:
typedef SensorBase *SensorBasePtr;

Expand Down Expand Up @@ -84,6 +80,10 @@ class SensorCollection : public UpdatableObject {
}
}
//*** End: UpdatableState implementation ***//

private:
typedef UpdatableContainer<SensorBasePtr> SensorBaseContainer;
unordered_map<uint, unique_ptr<SensorBaseContainer>> sensors_;
};

} // namespace autonomylib
Expand Down

0 comments on commit f65c7db

Please sign in to comment.