diff options
Diffstat (limited to 'slicer/db/sqlTablePatchSerializer.cpp')
-rw-r--r-- | slicer/db/sqlTablePatchSerializer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slicer/db/sqlTablePatchSerializer.cpp b/slicer/db/sqlTablePatchSerializer.cpp index 08aa14d..a83357f 100644 --- a/slicer/db/sqlTablePatchSerializer.cpp +++ b/slicer/db/sqlTablePatchSerializer.cpp @@ -4,7 +4,7 @@ #include <slicer/metadata.h> #include <compileTimeFormatter.h> #include <scopeExit.h> -#include <boost/bind.hpp> +#include <functional> namespace Slicer { AdHocFormatter(ttname, "slicer_tmp_%?"); @@ -26,7 +26,7 @@ namespace Slicer { tablePatch.cols.clear(); createTemporaryTable(); - AdHoc::ScopeExit tidy(boost::bind(&SqlTablePatchSerializer::dropTemporaryTable, this)); + AdHoc::ScopeExit tidy(std::bind(&SqlTablePatchSerializer::dropTemporaryTable, this)); SqlInsertSerializer ins(db, tablePatch.src); ins.Serialize(mpr); |