Fix include guard names.

This commit is contained in:
Alejandro Cabeza Romero 2026-02-04 16:27:47 +01:00
parent a91bb53e00
commit ca73309ee1
No known key found for this signature in database
GPG Key ID: DA3D14AE478030FD
2 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
#ifndef I_LOGOS_EXECUTION_ZONE_WALLET_MODULE_API_H
#define I_LOGOS_EXECUTION_ZONE_WALLET_MODULE_API_H
#ifndef I_LOGOS_EXECUTION_ZONE_WALLET_MODULE_H
#define I_LOGOS_EXECUTION_ZONE_WALLET_MODULE_H
#include <core/interface.h>
@ -17,7 +17,7 @@ public:
// === Logos Core ===
virtual void initLogos(LogosAPI* logosAPIInstance) = 0;
virtual void initLogos(LogosAPI* logosApiInstance) = 0;
// === Logos Execution Zone Wallet ===

View File

@ -1,5 +1,5 @@
#ifndef LOGOS_EXECUTION_ZONE_WALLET_MODULE_API_H
#define LOGOS_EXECUTION_ZONE_WALLET_MODULE_API_H
#ifndef LOGOS_EXECUTION_ZONE_WALLET_MODULE_H
#define LOGOS_EXECUTION_ZONE_WALLET_MODULE_H
#include "i_logos_execution_zone_wallet_module.h"