1
0
forked from fsfw/fsfw

include guards improved

This commit is contained in:
2020-08-28 18:45:19 +02:00
parent 1b9c8446b7
commit b6a19f911d
7 changed files with 23 additions and 23 deletions

View File

@ -1,11 +1,11 @@
#ifndef FRAMEWORK_PARAMETERS_PARAMETERWRAPPER_H_
#define FRAMEWORK_PARAMETERS_PARAMETERWRAPPER_H_
#ifndef FSFW_PARAMETERS_PARAMETERWRAPPER_H_
#define FSFW_PARAMETERS_PARAMETERWRAPPER_H_
#include "../returnvalues/HasReturnvaluesIF.h"
#include "../serialize/SerializeAdapter.h"
#include "../serialize/SerializeIF.h"
#include <stddef.h>
#include "../globalfunctions/Type.h"
#include <cstddef>
/**
* @brief
@ -159,4 +159,4 @@ inline ReturnValue_t ParameterWrapper::getElement(T *value, uint8_t row,
}
}
#endif /* PARAMETERWRAPPER_H_ */
#endif /* FSFW_PARAMETERS_PARAMETERWRAPPER_H_ */