Minor rename of header guard

In this way we avoid problems with clang-tidy and defined identifiers
that starts with __
This commit is contained in:
David Capello 2024-02-28 21:10:07 -03:00
parent 4ea0390623
commit 32bdb3a695

View File

@ -1,15 +1,15 @@
// Aseprite // Aseprite
// Copyright (C) 2018-2020 Igara Studio S.A. // Copyright (C) 2018-2024 Igara Studio S.A.
// Copyright (C) 2001-2018 David Capello // Copyright (C) 2001-2018 David Capello
// //
// This program is distributed under the terms of // This program is distributed under the terms of
// the End-User License Agreement for Aseprite. // the End-User License Agreement for Aseprite.
#ifdef __ASEPRITE_CONFIG_H #ifdef ASEPRITE_CONFIG_H_INCLUDED
#error You cannot use config.h two times #error You cannot use config.h two times
#endif #endif
#define __ASEPRITE_CONFIG_H #define ASEPRITE_CONFIG_H_INCLUDED
// In MSVC // In MSVC
#ifdef _MSC_VER #ifdef _MSC_VER