Fix some formatting from a recent commit.
[oota-llvm.git] / include / llvm / ExecutionEngine / Orc / LogicalDylib.h
index be9cdfa7193f3ddc5ef15fef022ad4e4fe7ebe8c..90380391decfe2452b12605c2436d8b430ad05cc 100644 (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.
   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;
     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).
 
   // 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());
 
   LogicalModuleHandle createLogicalModule() {
     LogicalModules.push_back(LogicalModule());