CPU: Make the constants for StaticInst flags visible outside the class.

This commit is contained in:
Gabe Black
2010-08-23 09:44:19 -07:00
parent 6f24da359f
commit b187e7c9cc

View File

@@ -104,7 +104,7 @@ isRomMicroPC(MicroPC upc)
*/
class StaticInstBase : public RefCounted
{
protected:
public:
/// Set of boolean static instruction properties.
///
@@ -185,6 +185,8 @@ class StaticInstBase : public RefCounted
NumFlags
};
protected:
/// Flag values for this instruction.
std::bitset<NumFlags> flags;