Replace #define ... with pragma once

This commit is contained in:
2024-03-10 12:50:35 +01:00
parent 51f32113c0
commit 0010c840d1
33 changed files with 84 additions and 111 deletions

View File

@@ -1,5 +1,5 @@
#ifndef COMMAND_PARSER_H
#define COMMAND_PARSER_H
#pragma once
#include <string>
#include <vector>
#include <tuple>
@@ -17,4 +17,3 @@ namespace platform {
int index;
};
} /* namespace platform */
#endif /* COMMAND_PARSER_H */