Fixing the Jenkins build

This commit is contained in:
Alexander Bock
2022-04-12 21:11:01 +02:00
parent f532a352d6
commit 4697290298

View File

@@ -101,7 +101,7 @@ public:
Relative
};
Type type = Type::Absolute;
Type type;
std::string value;
};
@@ -111,7 +111,7 @@ public:
std::string anchor;
std::optional<std::string> aim;
std::string referenceFrame;
glm::dvec3 position = glm::dvec3(0.0);
glm::dvec3 position;
std::optional<glm::dvec3> up;
std::optional<double> yaw;
std::optional<double> pitch;
@@ -121,8 +121,8 @@ public:
static constexpr const char* Type = "goToGeo";
std::string anchor;
double latitude = 0.0;
double longitude = 0.0;
double latitude;
double longitude;
std::optional<double> altitude;
};