getter not required anymore
fsfw/fsfw/pipeline/pr-development This commit looks good Details

This commit is contained in:
Robin Müller 2022-03-09 19:10:05 +01:00
parent 345a799031
commit ca508bfe61
2 changed files with 0 additions and 4 deletions

View File

@ -7,5 +7,3 @@ const fsfw::Version fsfw::FSFW_VERSION = {FSFW_VERSION_MAJOR, FSFW_VERSION_MINOR
fsfw::Version::Version(uint32_t major, uint32_t minor, uint32_t revision)
: major(major), minor(minor), revision(revision) {}
void fsfw::getVersion(Version& version) {}

View File

@ -32,8 +32,6 @@ class Version {
extern const fsfw::Version FSFW_VERSION;
void getVersion(Version& version);
} // namespace fsfw
#endif /* FSFW_SRC_FSFW_VERSION_H_ */