Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #9403 from lioncash/guard
ArmCommon: Add missing header guard
  • Loading branch information
JosJuice committed Dec 31, 2020
2 parents 31780a6 + e45aa01 commit 7bf590e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Source/Core/Common/ArmCommon.h
Expand Up @@ -2,6 +2,8 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.

#pragma once

#include "Common/CommonTypes.h"

enum CCFlags
Expand All @@ -24,4 +26,4 @@ enum CCFlags
CC_HS = CC_CS, // Alias of CC_CS Unsigned higher or same
CC_LO = CC_CC, // Alias of CC_CC Unsigned lower
};
const u32 NO_COND = 0xE0000000;
constexpr u32 NO_COND = 0xE0000000;

0 comments on commit 7bf590e

Please sign in to comment.