Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/FirebirdSQL/firebird
/ ~TempFile
Method
~TempFile
src/common/classes/TempFile.cpp:265–276 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
263
//
264
265
TempFile::~TempFile()
266
{
267
#if defined(WIN_NT)
268
CloseHandle(handle);
269
#else
270
::close(handle);
271
#endif
272
if (doUnlink)
273
{
274
::unlink(filename.c_str());
275
}
276
}
277
278
//
279
// TempFile::seek
Callers
nothing calls this directly
Calls
2
unlink
Function · 0.50
c_str
Method · 0.45
Tested by
no test coverage detected