SPU/PPU Loader: Implement linker/PS3 compiler executable files loading
This commit is contained in:
+2
-2
@@ -164,12 +164,12 @@ public:
|
||||
return r;
|
||||
}
|
||||
|
||||
constexpr bool all_of(bs_t arg)
|
||||
constexpr bool all_of(bs_t arg) const
|
||||
{
|
||||
return (m_data & arg.m_data) == arg.m_data;
|
||||
}
|
||||
|
||||
constexpr bool none_of(bs_t arg)
|
||||
constexpr bool none_of(bs_t arg) const
|
||||
{
|
||||
return (m_data & arg.m_data) == 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user