Activates new gcc compiler flags #568
No reviewers
Labels
No Label
API Change
Breaking API Change
bug
build
cosmetics
Documentation
duplicate
feature
help wanted
hotfix
invalid
question
Refactor
Tests
wontfix
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: fsfw/fsfw#568
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "gaisser/fsfw:gaisser_compiler_flags"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Activates compiler flags according to #446.
@ -1,11 +1,13 @@
#ifndef FSFW_SRC_FSFW_CFDP_FILESTOREREQUESTBASE_H_
#define FSFW_SRC_FSFW_CFDP_FILESTOREREQUESTBASE_H_
#include <FSFWConfig.h>
Would be good to replace this with
#include "fsfw/FSFW.h"
. That file includes the config but is also able to sanitize some of the values.Done
@ -1,6 +1,8 @@
#ifndef FSFW_SERVICEINTERFACE_SERVICEINTERFACEPRINTER
#define FSFW_SERVICEINTERFACE_SERVICEINTERFACEPRINTER
#include <FSFWConfig.h>
Use
#include "fsfw/FSFW.h"
hereDone
@ -1,5 +1,7 @@
#include "fsfw/storagemanager/LocalPool.h"
#include <FSFWConfig.h>
Use
#include "fsfw/FSFW.h"
hereDone