Skip to content

Commit f224a53

Browse files
committed
fix ci
1 parent de11d03 commit f224a53

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

plugins/SkyCultureMaker/src/ScmConstellation.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
#include <QDir>
2626
#include <QFileInfo>
2727

28-
scm::ScmConstellation::ScmConstellation(const std::vector<scm::CoordinateLine> &coordinates,
29-
const std::vector<scm::StarLine> &stars, const bool isDarkConstellation)
28+
scm::ScmConstellation::ScmConstellation(const std::vector<CoordinateLine> &coordinates,
29+
const std::vector<StarLine> &stars, const bool isDarkConstellation)
3030
: coordinates(coordinates)
3131
, stars(stars)
3232
, isDarkConstellation(isDarkConstellation)

plugins/SkyCultureMaker/src/ScmConstellation.hpp

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,7 @@ class ScmConstellation
4343
{
4444
public:
4545
ScmConstellation(const std::vector<CoordinateLine> &coordinates, const std::vector<StarLine> &stars,
46-
bool isDarkConstellation = false)
47-
: coordinates(coordinates)
48-
, stars(stars)
49-
, isDarkConstellation(isDarkConstellation) {};
46+
const bool isDarkConstellation = false);
5047

5148
/// The frame that is used for calculation and is drawn on.
5249
static const StelCore::FrameType drawFrame = StelCore::FrameJ2000;

0 commit comments

Comments
 (0)