Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimi1010 committed Nov 20, 2024
1 parent 17ec9a2 commit 2029b4b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Common++/header/ObjectPool.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ namespace pcpp
* @param[in] maxPoolSize The maximum number of objects in the pool
* @param[in] preallocate The number of objects to preallocate in the pool
*/
explicit ObjectPool(std::size_t maxPoolSize = DEFAULT_POOL_SIZE, std::size_t preallocate = 0) : m_maxPoolSize(maxPoolSize)
explicit ObjectPool(std::size_t maxPoolSize = DEFAULT_POOL_SIZE, std::size_t preallocate = 0)
: m_maxPoolSize(maxPoolSize)
{
this->preallocate(preallocate);
}
Expand Down

0 comments on commit 2029b4b

Please sign in to comment.