see issue #1
This commit is contained in:
@@ -106,7 +106,7 @@ endif(${GOOGLETEST_FOUND})
|
||||
|
||||
file(
|
||||
GLOB_RECURSE PROJECT_FILES FOLLOW_SYMLINKS
|
||||
*.txt *.c *.cpp *.hpp *.h *.in *.cmake *.sh *.md AUTHORS LICENSE
|
||||
*.txt *.c *.cpp *.hpp *.h *.in *.cmake *.sh *.md *.yml *.bat AUTHORS LICENSE
|
||||
)
|
||||
|
||||
add_custom_target(
|
||||
|
||||
@@ -125,7 +125,11 @@ public:
|
||||
using entity_type = typename Pool<Component>::entity_type;
|
||||
|
||||
explicit ComponentPool(size_type dim = 4098) noexcept
|
||||
#ifdef WIN32
|
||||
: pools(Pool<Component>{dim}, Pool<Components>{dim}...)
|
||||
#else
|
||||
: pools{Pool<Component>{dim}, Pool<Components>{dim}...}
|
||||
#endif
|
||||
{
|
||||
assert(!(dim < 0));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user