From 7430e923398c5acf0f740087d77d1ed426840ae9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Mon, 7 Oct 2024 23:10:36 +0200 Subject: [PATCH] Remove unneeded includes --- example/movable.hpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/example/movable.hpp b/example/movable.hpp index 3b2518f..0e05394 100644 --- a/example/movable.hpp +++ b/example/movable.hpp @@ -13,8 +13,17 @@ //[movable_definition //header file "movable.hpp" + +//This devinition should only include a single, minimal move header #include -#include + +//Forward declaration of +namespace boost{ + +template +struct has_nothrow_move; + +} //namespace boost{ //A movable class class movable