diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-26 10:10:06 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-26 10:10:06 +0100 |
| commit | d532b43153cb68d6e92c5dac58cbd3c8ab4f60af (patch) | |
| tree | e748d39deee4e4c0983354ccf3fa419263368f87 /include/ThirdParty | |
| parent | ba1b968d17a1ed29694f850af58787c3eb2657d4 (diff) | |
feat! Use header guards instead of pragma once.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/ThirdParty')
| -rw-r--r-- | include/ThirdParty/Dialogs/Dialogs.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/ThirdParty/Dialogs/Dialogs.h b/include/ThirdParty/Dialogs/Dialogs.h index f632026..8168dd2 100644 --- a/include/ThirdParty/Dialogs/Dialogs.h +++ b/include/ThirdParty/Dialogs/Dialogs.h @@ -10,7 +10,8 @@ // See http://www.wtfpl.net/ for more details. // -#pragma once +#ifndef NECTAR_THIRDPARTY_DIALOGS_DIALOGS_H +#define NECTAR_THIRDPARTY_DIALOGS_DIALOGS_H #if _WIN32 #ifndef WIN32_LEAN_AND_MEAN @@ -1736,3 +1737,5 @@ inline std::string select_folder::result() { #endif // PFD_SKIP_IMPLEMENTATION } // namespace pfd + +#endif // NECTAR_THIRDPARTY_DIALOGS_DIALOGS_H |
