replace include guards with pragma once

This commit is contained in:
MihailRis
2024-08-10 01:57:59 +03:00
parent f43cc93cd2
commit de5c75d782
164 changed files with 166 additions and 656 deletions
+1 -4
View File
@@ -1,5 +1,4 @@
#ifndef DEBUG_LOGGER_HPP_
#define DEBUG_LOGGER_HPP_
#pragma once
#include <fstream>
#include <mutex>
@@ -63,5 +62,3 @@ namespace debug {
}
};
}
#endif // DEBUG_LOGGER_HPP_