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:
David Blaikie 2015-07-31 21:37:58 +00:00
parent 4c20864f94
commit be031d9158
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ private:
struct LogicalModule {
// Make this move-only to ensure they don't get duplicated across moves of
// LogicalDylib or anything like that.
LogicalModule(LogicalModule&&) = default;
LogicalModule(LogicalModule &&) = default;
LogicalModule() = default;
LogicalModuleResources Resources;
BaseLayerHandleList BaseLayerHandles;
@ -52,7 +52,7 @@ public:
// If possible, remove this and ~LogicalDylib once the work in the dtor is
// moved to members (eg: self-unregistering base layer handles).
LogicalDylib(LogicalDylib&& RHS) = default;
LogicalDylib(LogicalDylib &&RHS) = default;
LogicalModuleHandle createLogicalModule() {
LogicalModules.push_back(LogicalModule());