mirror of
https://github.com/MariaDB/server.git
synced 2025-11-30 05:23:50 +03:00
11 lines
116 B
C++
11 lines
116 B
C++
#include "db_cxx.h"
|
|
|
|
Dbt::Dbt(void) {
|
|
DBT *dbt = this;
|
|
memset(dbt, 0, sizeof(*dbt));
|
|
}
|
|
|
|
Dbt::~Dbt(void)
|
|
{
|
|
}
|