]> git.seodisparate.com - EntityComponentMetaSystem/commitdiff
Minor whitespace fixes, minor .gitignore change
authorStephen Seo <seo.disparate@gmail.com>
Thu, 11 Jul 2019 10:47:39 +0000 (19:47 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Thu, 11 Jul 2019 10:47:39 +0000 (19:47 +0900)
.gitignore
src/EC/Manager.hpp

index ae041a3bf5920932a5a8ed798d8dddb4d788f6e8..a087dc25db5d487b2c80d8d3b7d2988d70fbc2f5 100644 (file)
@@ -4,3 +4,4 @@ build*/
 doxygen_html/
 compile_commands.json
 tags
+.clangd/
index 4b5e4e4d7a555d6a9f4708ed5c2e0f514e5106ac..cb4a61276e50dbdd9be47cdc8de378e9d7b6484a 100644 (file)
@@ -564,7 +564,7 @@ namespace EC
             The second parameter is default nullptr and will be passed to the
             function call as the second parameter as a means of providing
             context (useful when the function is not a lambda function). The
-            third parameter is default 1 (not multi-threaded). If the third 
+            third parameter is default 1 (not multi-threaded). If the third
             parameter threadCount is set to a value greater than 1, then
             threadCount threads will be used.  Note that multi-threading is
             based on splitting the task of calling the function across sections
@@ -865,7 +865,7 @@ namespace EC
                 std::make_tuple(
                     signatureBitset,
                     context,
-                    [function, helper, this] 
+                    [function, helper, this]
                         (std::size_t threadCount,
                         std::vector<std::size_t> matching,
                         void* context)
@@ -1367,7 +1367,7 @@ namespace EC
                     threads[i].join();
                 }
             }
-            
+
             // call functions on matching entities
             EC::Meta::forEachDoubleTuple(
                 EC::Meta::Morph<SigList, std::tuple<> >{},
@@ -1563,7 +1563,7 @@ namespace EC
                     threads[i].join();
                 }
             }
-            
+
             // call functions on matching entities
             EC::Meta::forEachDoubleTuple(
                 EC::Meta::Morph<SigList, std::tuple<> >{},