mirror of
https://github.com/LongSoft/UEFITool.git
synced 2025-05-21 02:35:26 -04:00
Removed '_' symbols in include guards
which are violating DCL51-CPP rule, closing #46
This commit is contained in:
parent
1dddafd4b3
commit
80a2d57f62
28 changed files with 103 additions and 98 deletions
|
@ -11,8 +11,8 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||
|
||||
*/
|
||||
|
||||
#ifndef __BASETYPES_H__
|
||||
#define __BASETYPES_H__
|
||||
#ifndef BASETYPES_H
|
||||
#define BASETYPES_H
|
||||
|
||||
#include <stdarg.h>
|
||||
#include <stdint.h>
|
||||
|
@ -166,5 +166,4 @@ UINT8: 8;
|
|||
#define hexarg(X) arg(QString("%1").arg((X),0,16).toUpper())
|
||||
#define hexarg2(X, Y) arg(QString("%1").arg((X),(Y),16,QLatin1Char('0')).toUpper())
|
||||
|
||||
|
||||
#endif
|
||||
#endif // BASETYPES_H
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue