Activates new gcc compiler flags #568

Merged
muellerr merged 8 commits from gaisser/fsfw:gaisser_compiler_flags into development 2022-03-07 14:44:10 +01:00
3 changed files with 3 additions and 4 deletions
Showing only changes of commit 0e8328fca3 - Show all commits

View File

@ -1,7 +1,6 @@
#ifndef FSFW_SRC_FSFW_CFDP_FILESTOREREQUESTBASE_H_
#define FSFW_SRC_FSFW_CFDP_FILESTOREREQUESTBASE_H_
#include <FSFWConfig.h>
#include <fsfw/cfdp/definitions.h>
gaisser marked this conversation as resolved Outdated

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.

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

Done
#include <fsfw/cfdp/tlv/Lv.h>
#include <fsfw/cfdp/tlv/Tlv.h>
@ -12,6 +11,8 @@
#include <cstddef>
#include <cstdint>
#include "fsfw/FSFW.h"
namespace cfdp {
enum FilestoreActionCode {

View File

@ -1,7 +1,7 @@
#ifndef FSFW_SERVICEINTERFACE_SERVICEINTERFACEPRINTER
#define FSFW_SERVICEINTERFACE_SERVICEINTERFACEPRINTER
#include <FSFWConfig.h>
#include "fsfw/FSFW.h"
gaisser marked this conversation as resolved Outdated

Use #include "fsfw/FSFW.h" here

Use `#include "fsfw/FSFW.h"` here

Done

Done
#if FSFW_DISABLE_PRINTOUT == 0
#include <cstdio>

View File

@ -1,7 +1,5 @@
#include "fsfw/storagemanager/LocalPool.h"
#include <FSFWConfig.h>
#include <cstring>
gaisser marked this conversation as resolved Outdated

Use #include "fsfw/FSFW.h" here

Use `#include "fsfw/FSFW.h"` here

Done

Done
#include "fsfw/FSFW.h"