mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Common/CodeBlock: Namespace code under the Common namespace
Brings more common code under the Common namespace.
This commit is contained in:
parent
f51eba9e79
commit
1c63a48fab
3 changed files with 5 additions and 2 deletions
|
@ -11,6 +11,8 @@
|
|||
#include "Common/CommonTypes.h"
|
||||
#include "Common/MemoryUtil.h"
|
||||
|
||||
namespace Common
|
||||
{
|
||||
// Everything that needs to generate code should inherit from this.
|
||||
// You get memory management for free, plus, you can use all emitter functions without
|
||||
// having to prefix them with gen-> or something similar.
|
||||
|
@ -116,3 +118,4 @@ public:
|
|||
m_children.emplace_back(child);
|
||||
}
|
||||
};
|
||||
} // namespace Common
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue