mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 12:58:00 +03:00

This has been done via CLion's "unused include directive", set to "detect completely unused".
13 lines
195 B
C++
13 lines
195 B
C++
#ifndef OPENMW_COMPONENTS_SQLITE3_TYPES_H
|
|
#define OPENMW_COMPONENTS_SQLITE3_TYPES_H
|
|
|
|
namespace Sqlite3
|
|
{
|
|
struct ConstBlob
|
|
{
|
|
const char* mData;
|
|
int mSize;
|
|
};
|
|
}
|
|
|
|
#endif
|