refactor(probe): changed from header guard to pragma once

This commit is contained in:
2025-06-09 10:20:00 -04:00
parent 2a91d57ad7
commit 36b605142e

View File

@@ -19,8 +19,7 @@
// //
// *********************************************************************** */ // *********************************************************************** */
//=== Probe.h === //=== Probe.h ===
#ifndef PROBE_H #pragma once
#define PROBE_H
#include <string> #include <string>
#include <map> #include <map>
@@ -135,5 +134,4 @@ namespace Probe {
const std::string& loggerName); const std::string& loggerName);
}; };
} // namespace Probe } // namespace Probe
#endif