diff Core/SQLite/Connection.h @ 1221:2255e66da726

getting rid of the dependency against Boost in the SQLite C++ wrapper
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 10 Nov 2014 17:05:50 +0100
parents 9b9026560a5f
children 63d47b1fa239
line wrap: on
line diff
--- a/Core/SQLite/Connection.h	Mon Nov 10 16:33:51 2014 +0100
+++ b/Core/SQLite/Connection.h	Mon Nov 10 17:05:50 2014 +0100
@@ -41,7 +41,6 @@
 #include "IScalarFunction.h"
 
 #include <string>
-#include <boost/noncopyable.hpp>
 #include <map>
 
 struct sqlite3;
@@ -53,7 +52,7 @@
 {
   namespace SQLite
   {
-    class Connection : boost::noncopyable
+    class Connection : NonCopyable
     {
       friend class Statement;
       friend class Transaction;