Skip to content

Commit

Permalink
Remove unused type alias and function declaration from deepskyobj.h
Browse files Browse the repository at this point in the history
  • Loading branch information
ajtribick committed Jan 1, 2025
1 parent 9292455 commit 94f5305
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions src/celengine/deepskyobj.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

#pragma once

#include <cstdint>
#include <iosfwd>
#include <string>
#include <vector>
Expand Down Expand Up @@ -87,7 +88,7 @@ class DeepSkyObject
double& cosAngleToBoundCenter) const;
virtual bool load(const AssociativeArray*, const fs::path& resPath);

virtual uint64_t getRenderMask() const { return 0; }
virtual std::uint64_t getRenderMask() const { return 0; }
virtual unsigned int getLabelMask() const { return 0; }

AstroCatalog::IndexNumber getIndex() const { return indexNumber; }
Expand All @@ -104,7 +105,3 @@ class DeepSkyObject
bool visible { true };
bool clickable { true };
};

using DeepSkyCatalog = std::vector<DeepSkyObject*>;
int LoadDeepSkyObjects(DeepSkyCatalog&, std::istream& in,
const std::string& path);

0 comments on commit 94f5305

Please sign in to comment.