mirror of
https://github.com/Kitware/CMake.git
synced 2026-07-01 20:27:24 +00: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