MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / reserve

Method reserve

src/common/classes/fb_string.cpp:182–189  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

180 }
181
182 void AbstractString::reserve(size_type n)
183 {
184 // Do not allow to reserve huge buffers
185 if (n > getMaxLength())
186 n = getMaxLength();
187
188 reserveBuffer(n);
189 }
190
191 void AbstractString::resize(const size_type n, char_type c)
192 {

Callers 4

readenvFunction · 0.45
putStrArgMethod · 0.45
GetProgramFilesDirFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected