mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 04:30:23 +00:00
Fix some formatting from a recent commit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@243789 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4c20864f94
commit
be031d9158
@ -30,7 +30,7 @@ private:
|
|||||||
struct LogicalModule {
|
struct LogicalModule {
|
||||||
// Make this move-only to ensure they don't get duplicated across moves of
|
// Make this move-only to ensure they don't get duplicated across moves of
|
||||||
// LogicalDylib or anything like that.
|
// LogicalDylib or anything like that.
|
||||||
LogicalModule(LogicalModule&&) = default;
|
LogicalModule(LogicalModule &&) = default;
|
||||||
LogicalModule() = default;
|
LogicalModule() = default;
|
||||||
LogicalModuleResources Resources;
|
LogicalModuleResources Resources;
|
||||||
BaseLayerHandleList BaseLayerHandles;
|
BaseLayerHandleList BaseLayerHandles;
|
||||||
@ -52,7 +52,7 @@ public:
|
|||||||
|
|
||||||
// If possible, remove this and ~LogicalDylib once the work in the dtor is
|
// If possible, remove this and ~LogicalDylib once the work in the dtor is
|
||||||
// moved to members (eg: self-unregistering base layer handles).
|
// moved to members (eg: self-unregistering base layer handles).
|
||||||
LogicalDylib(LogicalDylib&& RHS) = default;
|
LogicalDylib(LogicalDylib &&RHS) = default;
|
||||||
|
|
||||||
LogicalModuleHandle createLogicalModule() {
|
LogicalModuleHandle createLogicalModule() {
|
||||||
LogicalModules.push_back(LogicalModule());
|
LogicalModules.push_back(LogicalModule());
|
||||||
|
Loading…
Reference in New Issue
Block a user