diff Core/SQLite/FunctionContext.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/FunctionContext.h	Mon Nov 10 16:33:51 2014 +0100
+++ b/Core/SQLite/FunctionContext.h	Mon Nov 10 17:05:50 2014 +0100
@@ -34,8 +34,6 @@
 
 #pragma once
 
-#include <boost/noncopyable.hpp>
-
 #include "Statement.h"
 
 struct sqlite3_context;
@@ -45,7 +43,7 @@
 {
   namespace SQLite
   {
-    class FunctionContext : public boost::noncopyable
+    class FunctionContext : public NonCopyable
     {
       friend class Connection;