From 59cbcff8fd22f7c70d04cbf0daee2844b57d969c Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Fri, 6 Apr 2018 11:30:10 +0100 Subject: C++17 Remove all boost things now in the standard library from CTF. --- libadhocutil/compileTimeFormatter.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libadhocutil/compileTimeFormatter.h b/libadhocutil/compileTimeFormatter.h index 4f980d2..53116d0 100644 --- a/libadhocutil/compileTimeFormatter.h +++ b/libadhocutil/compileTimeFormatter.h @@ -1,6 +1,5 @@ #include #include -#include #include namespace AdHoc { @@ -81,7 +80,7 @@ namespace AdHoc { template static void write(stream &, const Pn & ...) { - BOOST_STATIC_ASSERT_MSG(!&err, "invalid format string/arguments"); + static_assert(!&err, "invalid format string/arguments"); } static int err; }; -- cgit v1.2.3