mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-04 17:56:13 -04:00
Merge pull request #29 from mc-server/FixClangWarning
Fix for clang warning about Column's implicit constructor.
This commit is contained in:
commit
618169cf36
@ -43,6 +43,13 @@ namespace SQLite
|
||||
class Column
|
||||
{
|
||||
public:
|
||||
// Make clang happy by explicitly implementing the copy-constructor:
|
||||
Column(const Column & aOther) :
|
||||
mStmtPtr(aOther.mStmtPtr),
|
||||
mIndex(aOther.mIndex)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief Encapsulation of a Column in a Row of the result.
|
||||
*
|
||||
|
Loading…
x
Reference in New Issue
Block a user