Index: src/libchcore/TSQLiteStatement.h =================================================================== diff -u -N -rcb4e9d4b60d62b25ae2cf556c0642601af56c787 -r4fe995b304ea342b50293f92d3c1992b43b820f7 --- src/libchcore/TSQLiteStatement.h (.../TSQLiteStatement.h) (revision cb4e9d4b60d62b25ae2cf556c0642601af56c787) +++ src/libchcore/TSQLiteStatement.h (.../TSQLiteStatement.h) (revision 4fe995b304ea342b50293f92d3c1992b43b820f7) @@ -19,7 +19,6 @@ #ifndef __TSQLITESTATEMENT_H__ #define __TSQLITESTATEMENT_H__ -#include "libchcore.h" #include "TSQLiteDatabase.h" #include "TString.h" @@ -29,7 +28,7 @@ { namespace sqlite { - typedef boost::shared_ptr SQLiteStatementHandle; + typedef std::shared_ptr SQLiteStatementHandle; class TSQLiteStatement { @@ -100,7 +99,7 @@ bool m_bHasRow; }; - typedef boost::shared_ptr TSQLiteStatementPtr; + typedef std::shared_ptr TSQLiteStatementPtr; } }