1
0
forked from fsfw/fsfw

include guard fix

This commit is contained in:
2020-08-27 20:19:27 +02:00
parent 795b1e5245
commit eb503ae030
3 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
#ifndef FRAMEWORK_CONTAINER_DYNAMICFIFO_H_
#define FRAMEWORK_CONTAINER_DYNAMICFIFO_H_
#ifndef FSFW_CONTAINER_DYNAMICFIFO_H_
#define FSFW_CONTAINER_DYNAMICFIFO_H_
#include "FIFOBase.h"
#include <vector>
@ -39,4 +39,4 @@ private:
std::vector<T> fifoVector;
};
#endif /* FRAMEWORK_CONTAINER_DYNAMICFIFO_H_ */
#endif /* FSFW_CONTAINER_DYNAMICFIFO_H_ */