mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
cmList: Expose container reserve
This commit is contained in:
@@ -813,6 +813,8 @@ public:
|
||||
|
||||
void resize(size_type count) { this->Values.resize(count); }
|
||||
|
||||
void reserve(size_type count) { this->Values.reserve(count); }
|
||||
|
||||
enum class FilterMode
|
||||
{
|
||||
INCLUDE,
|
||||
|
||||
Reference in New Issue
Block a user