Minor whitespace fixes, minor .gitignore change

This commit is contained in:
Stephen Seo 2019-07-11 19:47:39 +09:00
parent 8f133acbc6
commit 50a84f5c8c
2 changed files with 5 additions and 4 deletions

1
.gitignore vendored
View file

@ -4,3 +4,4 @@ build*/
doxygen_html/ doxygen_html/
compile_commands.json compile_commands.json
tags tags
.clangd/

View file

@ -564,7 +564,7 @@ namespace EC
The second parameter is default nullptr and will be passed to the The second parameter is default nullptr and will be passed to the
function call as the second parameter as a means of providing function call as the second parameter as a means of providing
context (useful when the function is not a lambda function). The 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 parameter threadCount is set to a value greater than 1, then
threadCount threads will be used. Note that multi-threading is threadCount threads will be used. Note that multi-threading is
based on splitting the task of calling the function across sections based on splitting the task of calling the function across sections
@ -865,7 +865,7 @@ namespace EC
std::make_tuple( std::make_tuple(
signatureBitset, signatureBitset,
context, context,
[function, helper, this] [function, helper, this]
(std::size_t threadCount, (std::size_t threadCount,
std::vector<std::size_t> matching, std::vector<std::size_t> matching,
void* context) void* context)
@ -1367,7 +1367,7 @@ namespace EC
threads[i].join(); threads[i].join();
} }
} }
// call functions on matching entities // call functions on matching entities
EC::Meta::forEachDoubleTuple( EC::Meta::forEachDoubleTuple(
EC::Meta::Morph<SigList, std::tuple<> >{}, EC::Meta::Morph<SigList, std::tuple<> >{},
@ -1563,7 +1563,7 @@ namespace EC
threads[i].join(); threads[i].join();
} }
} }
// call functions on matching entities // call functions on matching entities
EC::Meta::forEachDoubleTuple( EC::Meta::forEachDoubleTuple(
EC::Meta::Morph<SigList, std::tuple<> >{}, EC::Meta::Morph<SigList, std::tuple<> >{},